Skip to content

Instantly share code, notes, and snippets.

@joshkitt
Created December 18, 2017 18:47
Show Gist options
  • Save joshkitt/c674bffd5c9c6a47798a421be1c2b5b7 to your computer and use it in GitHub Desktop.
Save joshkitt/c674bffd5c9c6a47798a421be1c2b5b7 to your computer and use it in GitHub Desktop.
Combine multiple files into a single file (recursive)
find . -name '*.txt' -exec cat {} \; > all.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment