Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Converting newlines' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Converting newlines
Authored by: clith on Apr 30, '04 11:45:57AM
You don't need a whole app to do that. Here's a command to do it in-place: perl -pi 's/\r/\n/g;' file1 [file2 ..]

Hope this helps..

[ Reply to This | # ]