Guest Posted December 12, 2013 Share Posted December 12, 2013 (edited) I'm sick and tired of dealing with Unix line endings on readmes and the likes so I did a quick lookup and found the following on Wikipedia though it's been modified by me.TYPE "%1" | FIND "" /V > "%1".cleaned.txt && del "%1"It's currently in a batch file shortcut on my sendto menu but I'll put it as an extended context menu item in the end.Anyways, I don't have time for this. Please some of you guys are gurus when it comes to this. Just spit out a quick and dirty correct way of doing the command. It happens with .JS, .TXT, .MD (Google Chrome readmes and crap), files just name LICENSE, AUTHORS, NEWS, CONRIBUTERS, etc.I'd like it to process a UNIX line break file, convert it to DOS terminators CR/LF, delete the original file and then rename the ???temp file??? back to the original filename.Yeah, I could research some more but I'm just super busy and thought I'd throw this out. I got a lot going on in "RL" ATM so sorry in advance for such a request. Edited December 12, 2013 by -X- Link to comment Share on other sites More sharing options...
ar_seven_am Posted December 12, 2013 Share Posted December 12, 2013 UNIX new line using this :\nwhile CR/LF using this :\r\nwhy do u need to convert since UNIX line break has already supported in Windows? (please correct me if i'm wrong)with php, I use "str_replace" dont know with cmd prompt for similar function... Link to comment Share on other sites More sharing options...
jaclaz Posted December 12, 2013 Share Posted December 12, 2013 why do u need to convert since UNIX line break has already supported in Windows? (please correct me if i'm wrong)You are half-wrong. Notepad does NOT support them, Wordpad does.@-X-The "TYPE" trick may have issues, depending on source, it would be much more logical to use a program to replace the CR with CR+LF writing to the same file.You can use a "dedicated" tool like CRLF by Horst Schaeffer:http://www.horstmuc.de/horst.htmor a generic tool, like SED or gsar.As hinted before it would make even more sense to use an editor that understands the *nix line termination and displays them properly.jaclaz Link to comment Share on other sites More sharing options...
ar_seven_am Posted December 12, 2013 Share Posted December 12, 2013 You are half-wrong. Notepad does NOT support them, Wordpad does. ehmmm I see, thx jaclaz Link to comment Share on other sites More sharing options...
Yzöwl Posted December 12, 2013 Share Posted December 12, 2013 I seem to recall, (many moons ago), something like this working:@more filename.ext>newfilename.ext@del filename.ext@ren newfilename.ext filename.extTherefore you may be able to use:more "%~1">"%~dpn1.cleaned%~x1" && del "%~1" Link to comment Share on other sites More sharing options...
jumper Posted December 25, 2013 Share Posted December 25, 2013 In Win98, MORE doesn't convert the EOL, but SORT does. Using the pipe as the temporary file, this works (without sorting!):type %1 | sort /+-1 > %1 Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now