Skip to content

Instantly share code, notes, and snippets.

@vladholubiev
Created February 13, 2015 01:47
Show Gist options
  • Select an option

  • Save vladholubiev/3e4a651164c9f6d463e6 to your computer and use it in GitHub Desktop.

Select an option

Save vladholubiev/3e4a651164c9f6d463e6 to your computer and use it in GitHub Desktop.
How to count all the lines of code in a directory recursively?
find . -name "*.*" -not -path "./tests*" | xargs wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment