Concatenating a bunch of files
Thu Mar 08, 2007 · 38 words

A useful little tidbit. To merge the contents of all the files in an arbitrary directory hierachy into one single file, while skipping dot-files:

> find . -type f \! -name ".*" -exec cat {} > /Users/filipp/specs.txt \;

back · essays · credits ·