Skip to content

sylis posteets tagged Bash

4 years ago
  1. #Convertir un fichier texte d’un format Windows/dos vers unix:
  2.   tr -d \015′ < win-format.txt > unix-format.txt
  3. #Convertir un fichier texte d’un format unix vers Windows/dos:
  4.   sed -e ‘s/$/\r/’ unix-format.txt > win-format.txt

“Bash” related tags

sylis’s tags