Chuck Fox wrote:

BTW, there is a nifty little program called dos2unix (not sure if this is standard for all (*nix)), that removes extraneous carriage returns from files.

To remove every CR, use:


perl -pe 's/\r//'

or even just tr:

tr -d '\r'

-zsdc.



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to