Skip to content

Instantly share code, notes, and snippets.

@dyerrington
Created May 1, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dyerrington/4577382afc323e9ce3be to your computer and use it in GitHub Desktop.
Save dyerrington/4577382afc323e9ce3be to your computer and use it in GitHub Desktop.
Count words in files recursively
find . -type f -print0 | xargs -0 cat | wc -w
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment