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
How about this approach?
find . -type f -name '*.txt' -exec cat {} + >> output.txt