I am trying to remove the first 3 lines from 10,000 text files. Using:
for %f in (*.txt) do more +3 “%f” >> output.txt I am able to remove the headers and concatenate all files in the folder to one new file. However, I would like to keep the files separate, just without the header lines. Is this possible?