Skip to content

Conversion de fichier texte windows/unix

  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