user375191
user375191

Reputation: 123

How to delete Linefeed using batch file

I want to delete Linefeed in text file using batch file. Is it possible to do. Please provide some help

Upvotes: 2

Views: 4216

Answers (1)

mmonem
mmonem

Reputation: 2841

If you mean removing empty lines from text files try this in a batch file:

for /f "delims= tokens=*" %%x in (inputfile.txt) do echo %%x >> outputfile.txt

you may also want to replace inputfile.txt and outputfile.txt by %1 and %2 to be used for any file given its name to the batch file

Upvotes: 1

Related Questions