Thursday, December 31, 2015

Merge Multiple Text Files Using windows command

Following are the steps to merge number of text files into one text file using Windows command prompt.



  • Open Command Prompt (Press Win + R, then type CMD, press Enter)
  • Navigate to folder where multiple text file to be merged are stored.
  • Then execute following command
            for %f in (*.txt) do type "%f" >> Merged.txt