Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In bash, how do I convert DOW/Windows newlines to Unix? It must be non-interactive, not like starting vi and typing something in, but a command on the command line that can be put in a script file. The dos2unix and unix2dos commands are not available on the system.

How do I do this with commands like sed/awk/tr?

share|improve this question

8 Answers

You can use tr to convert from DOS to Unix, you can only do this safely if CR appears in your file only as the first byte of a CRLF byte pair. This is usually the case. You then use:

tr -d '\015' <DOS-file >UNIX-file

You can't do it the other way round (with standard 'tr').

If you know how to enter carriage return into a script (control-V, control-M to enter control-M), then:

sed 's/^M$//'     # DOS to Unix
sed 's/$/^M/'     # Unix to DOS

where the '^M' is the control-M character.

Question: why can't you get dos2unix and unix2dos installed (or dtou and utod)? Or is this a restriction imposed by the person setting homework?

share|improve this answer

This problem can be solved with standard tools, but there are sufficiently many traps for the unwary that I recommend you install the flip command, which was written over 20 years ago by Rahul Dhesi, the author of zoo. It does an excellent job converting file formats while, for example, avoiding the inadvertant destruction of binary files, which is a little too easy if you just race around altering every CRLF you see...

share|improve this answer
tr -d "\r" < file

take a look here for examples using sed

share|improve this answer
2  
I used a variant since my file only had \r : tr "\r" "\n" < infile > outfile – Matt Todd Nov 19 '10 at 0:29

The solutions posted so far only deal with part of the problem, converting DOS/Windows' CRLF into Unix's LF; the part they're missing is that DOS use CRLF as a line separator, while Unix uses LF as a line terminator. The difference is that a DOS file (usually) won't have anything after the last line in the file, while Unix will. To do the conversion properly, you need to add that final LF (unless the file is zero-length, i.e. has no lines in it at all). My favorite incantation for this (with a little added logic to handle Mac-style CR-separated files, and not molest files that're already in unix format) is a bit of perl:

perl -pe 'if ( s/\r\n?/\n/g ) { $f=1 }; if ( $f || ! $m ) { s/([^\n])\z/$1\n/ }; $m=1' PCfile.txt

Note that this sends the Unixified version of the file to stdout. If you want to replace the file with a Unixified version, add perl's -i flag.

share|improve this answer

Using AWK you can do:

awk '{ sub("\r$", ""); print }' dos.txt > unix.txt

Using Perl you can do:

perl -pe 's/\r$//' < dos.txt > unix.txt
share|improve this answer
this worked for me :P – holms Feb 12 at 9:14

Maybe something like

cat FILE | tr '\n\r' '\n' > FILE
share|improve this answer
2  
Will > FILE not wipe the contents of the FILE ? – codaddict Apr 10 '10 at 15:12
@unicornaddict: yes, 'cat FILE | tr ... > FILE' will wipe FILE. This only covers DOS to UNIX, too, not vice versa. – Jonathan Leffler Apr 10 '10 at 15:15
This is a useless use of cat where tr "\r\n" "\n" < infile > outfile works the same (but more efficiently). – newfurniturey Apr 25 at 4:55

You can find few commands at Convert files from DOS line endings to UNIX line endings to match your needs.

share|improve this answer
-1 Link-only answer that adds zero value in addition to the previously provided answers. You could have at least shown a little effort in trying to help by copy+pasting from the site (and giving credit, of course). – newfurniturey Apr 25 at 4:58

Download dos2unix, this project had dos2unix and unix2dos binaries for all platforms (windows *nix, mac)

Also available via homebrew for mac.

share|improve this answer
The question states dos2unix isn't available - an obvious answer is "well, then download it"; the OP is clearly looking for an alternative solution. – newfurniturey Apr 25 at 5:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.