December 12, 201312 yr 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, 201312 yr by -X-
December 12, 201312 yr 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...
December 12, 201312 yr 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
December 12, 201312 yr You are half-wrong. Notepad does NOT support them, Wordpad does. ehmmm I see, thx jaclaz
December 12, 201312 yr 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"
December 25, 201312 yr 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
Create an account or sign in to comment