On Mon, 2002-07-22 at 14:41, Desmond Lee wrote:
> Hi guys
> 
> I'm trying to read a file, but it's just one massive line. I think that the 
> ^M  is suppose to be an indication that that's wehre teh newline is suppose 
> to be. I've tried to replace ^M with a newline by executing something that i 
> found on the web:
> 
> perl -pi.bak -e 's/\^M/\n/g' moby_threads_install.txt

try: 
perl -pi.bak -e 's/\r/\n/g' moby_threads_install.txt



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

Reply via email to