- list the files you want to concatls | grep [pattern] > filelist
- Review your files are in the proper order with
viorcat. If you use a suffix (1, 2, 3, ..., N) this should be no problem - Create the final filecat filelist | xargs cat >> [final file]
- Remove the filelistrm -f filelist
Hope this helps anyone