2

I am using this perl command on my debian to change my file EOL:

perl -p -e 's/\n/\r\n/' < ~/scripts/bite/EOL/*.csv > ~/scripts/bite/sent/samefilename.csv

Every day there will be a new file in the "EOL" directory with a different name and it always has only 1 file in the directory, so I am using "*" to take whatever file is in it. But i need to save the new file with the same name as the file I chose to change without manually entering the file name to the command. Eventually this goes into my cronjob, so everything would be automatic.

EDIT: Fixed my problem by using "unix2dos"

BrandoN
  • 193
  • 10

2 Answers2

2

I would use the unix2dos utility, but you can also use

perl -pe's/\n/\r\n/' -i file.csv

See Specifying file to process to Perl one-liner.

Your program and this one only works on unix systems.

ikegami
  • 367,544
  • 15
  • 269
  • 518
2

Linux has command unix2dos and dos2unix for converting eol from MS Windows/DOS to UNIX format. Perhaps it is easiest solution for described problem.

Polar Bear
  • 6,762
  • 1
  • 5
  • 12