On Fri, 25 May 2001, baby lakshmi wrote:

> while doing ftp from windows to unix, the file contains ctl M at the end of
> each line. my file is a huge data file. i am not able to delete that. is
> there any better way to delete it.

Use Perl to do it:

perl -pi.bak -e 's/\cM//g' filename1 filename2 ...

-- Brett

Reply via email to