Combine thousands of text files18 Aug
Just in case you need to combine a lot of text files, simply use the following command from within the directory containing the files: (ls | xargs cat) > /path/to/out/file.txt
It’s surprisingly fast…I just combined over 11,000 files in about 1 second.

