Here's a nice, quick and simple tip if you need to merge multiple text files (*.txt) in just one:
- First put all your txt files in a folder (for example D:\Temp)
- Now open command line and navigate to D:\Temp
- Next, type the following command:
for %f in (*.txt) do type "%f" >> output.txt - And...it's done!
No comments:
Post a Comment