Possible Duplicate:
Convert CRLF's to line feeds on Linux

How can I convert a DOS text file to Unix text file, so I can use my Linux parser properly?

link|improve this question
feedback

migrated from stackoverflow.com Apr 7 '11 at 16:09

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by grawity, Tom Wijsman, Sathya Apr 10 '11 at 17:48

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

dos2unix is a tool for converting line endings (I'm guessing doc txt was a typo?).

link|improve this answer
feedback

On Debian-derived (Ubuntu, etc) systems, you want the tofrodos package, which provides the commands todos and fromdos. (fromdos is the one you are looking for.)

On RedHat-derived systems (RHEL, Centos, Fedora, etc), you want the dos2unix package, which provides the commands dos2unix and mac2unix. To convert in the other direction, you'll want the unix2dos package, which provides the unix2dos command.

link|improve this answer
feedback

If you mean "how do I convert a plain-text file in DOS format to a plain-text file in UNIX format", try the dos2unix command.

link|improve this answer
My Ubuntu does not have it, how to get it? – baboonWorksFine Apr 7 '11 at 16:08
feedback

Here's an explanation of how to use antiword to extract the text.

link|improve this answer
feedback

Some systems have a dos2unix command.

link|improve this answer
feedback

Do you mean: You want to convert Windows text files into Linux text files? If yes: There's a utility dos2unix that will do the job for you.

link|improve this answer
feedback

Most Unix installations include the 'tr' command ('tr' is short for 'translate') - you could use that to convert your input file with DOS text to output Unix text format:

tr -d '\r' < dos.txt > unix.txt

HTH!

link|improve this answer
feedback