What is the quickest and most pragmatic way to combine all *.txt file in a directory into one large text file?
Currently I\'m using windows with cygwin so I have acc
You can use Windows shell copy to concatenate files.
copy
C:\> copy *.txt outputfile
From the help:
To append files, specify a single file for destination, but multiple files for source (using wildcards or file1+file2+file3 format).