Concatenate all files in a folder into a single text file
29th May 2009
In Linux, assuming xargs is available:
(ls | xargs cat) > newfilename.txt
Tagged: Linux and command line
Comments and corrections to @edvanbeinum
29th May 2009
In Linux, assuming xargs is available:
(ls | xargs cat) > newfilename.txt
Tagged: Linux and command line
Comments and corrections to @edvanbeinum