Question says it all, I've got a 500,000 line file that gets generated as part of an automated build process on a Windows box and it's riddled with ^M's. When it goes out the door it needs to *nix friendly, what's the best approach here, is there a handy snippet of code that could do this for me? Or do I need to write a little C# or Java app?
|
|
Here is a Perl one-liner, taken from http://www.technocage.com/~caskey/dos2unix/
You can run it as follows:
Or, you can run it also in this way (the conversion is done in-place):
And here is my (naive) C version:
You should run it with input and output redirection:
|
||||||
|
|
|
If you're on Windows and need something run in a batch script, you can compile a simple C program to do the trick.
Usage:
Editing in-place would be a bit more difficult. Besides, you may want to keep backups of the originals for some reason (in case you accidentally strip a binary file, for example). That version removes all CR characters; if you only want to remove the ones that are in a CR-LF pair, you can use (this is the classic one-character-back method :-):
You can edit the file in-place using mode "r+". Below is a general myd2u program, which accepts file names as arguments. NOTE: This program uses ftruncate to chop off extra characters at the end. If there's any better (standard) way to do this, please edit or comment. Thanks!
|
||||||
|
|
|
If installing a base cygwin is too heavy, there are a number of standalone |
||
|
|
|
|
You will type ^M as : ctrl+V , Enter Edit: You can use '\r' instead of manually entering a carriage return, [thanks to @strager]
Edit 2: 'tr' is a unix utility, you can download a native windows version from http://unxutils.sourceforge.net[thanks to @Rob Kennedy] or use cygwin's unix emulation. |
||||||||||
|
|
|
Ftp it from the dos box, to the unix box, as an ascii file, instead of a binary file. Ftp will strip the crlf, and insert a lf. Transfer it back to the dos box as a binary file, and the lf will be retained. |
||||||||
|
|
|
There's a few methods mentioned here... |
||
|
|
|
|
Some text editors, such as UltraEdit/UEStudio have this functionality built-in.
|
||||||
|
|
|
If it is just one file I use notepad++. Nice because it is free. I have cygwin installed and use a one liner script I wrote for multiple files. If your interest in the script leave a comment. (I don't have it available to me a this moment.) |
||
|
|
