Skip to content

Instantly share code, notes, and snippets.

@VeryCB
Created September 15, 2013 16:56
Show Gist options
  • Save VeryCB/6572486 to your computer and use it in GitHub Desktop.
Save VeryCB/6572486 to your computer and use it in GitHub Desktop.
count all lines of python code, ignoring `venv` directory
find . -path ./venv -prune -o -name '*.py' | xargs wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment