dos2unix???

Peter Elsner peter at servplex.com
Tue Apr 15 06:54:18 PDT 2003


Here's a small Perl script... Name it dtox and placed it in your 
/usr/local/bin directory...

#!/usr/bin/perl
# SCRIPT: dtox
# AUTHOR: Peter Elsner <peter at servplex.com>
# PURPOSE: Convert Text files from DOS to UNIX (remove ^M's)
#

while (<>) {
         if ($ARGV ne $OLDARGV) {
                 rename($ARGV, $ARGV . '.bak');
                 open(ARGVOUT, ">$ARGV");
                 select(ARGVOUT);
                 $OLDARGV=$ARGV;
         }
         s/^M//g;
}
continue {
         print;
}

select(STDOUT);
exit;


Use it as follows:

% dtox filename

A back up file is created filename.bak and then a new file is created with 
the ^M's removed...

Peter


At 10:41 AM 4/15/2003 +0200, you wrote:
>Is there an equivalent dos2unix program that will strip out DOS character
>codes from text files?
>
>Thanks,
>Anthony
>_______________________________________________
>freebsd-questions at freebsd.org mailing list
>http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"

----------------------------------------------------------------------------------------------------------
Peter Elsner <peter at servplex.com>
Vice President Of Customer Service (And System Administrator)
1835 S. Carrier Parkway
Grand Prairie, Texas 75051
(972) 263-2080 - Voice
(972) 263-2082 - Fax
(972) 489-4838 - Cell Phone
(425) 988-8061 - eFax

I worry about my child and the Internet all the time, even though she's
too young to have logged on yet. Here's what I worry about. I worry
that 10 or 15 years from now, she will come to me and say "Daddy, where
were you when they took freedom of the press away from the Internet?"
-- Mike Godwin

Unix IS user friendly... It's just selective about who its friends are.
System Administration - It's a dirty job, but somebody said I had to do it.
If you receive something that says 'Send this to everyone you know,
pretend you don't know me.

Standard $500/message proofreading fee applies for UCE.




More information about the freebsd-questions mailing list