I've got many txt files and I want to batch convert them to the standard notepad .txt format from command prompt or batch file
I thought to use type file.txt > newfile.txt
but the type
command is not working so I thought to use the more
command but it limits the output...
EDIT: After looking around, this syntax is working:
FOR /F "eol=; tokens=2,3* delims=, " %i in (TEST.txt) do @echo %i %j %k >> Newfile.txt
The problem is that it doesn't write blank lines, so the final total number of lines won't match... and I need to overwrite the original TEST.txt with the output...