in reply to unix->dos & dos->unix

To convert a DOS text file to a Unix text file using Perl, enter:
perl -p -e 's/\r$//' < dosfile.txt > unixfile.txt
To convert from a Unix text file to a DOS text file with Perl, at the Unix shell prompt, enter:
perl -p -e 's/$/\r/' < unixfile.txt > dosfile.txt