Skip to content

Instantly share code, notes, and snippets.

@ritiek
Last active December 19, 2018 13:37
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 ritiek/af98b684a7e36d77a0b6f6eb9f35a190 to your computer and use it in GitHub Desktop.
Save ritiek/af98b684a7e36d77a0b6f6eb9f35a190 to your computer and use it in GitHub Desktop.
Count number of lines of code in a project
find . -name "*.py" -type f -exec grep . {} \; | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment