Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save troyharris/7e72f66a9b4242a3975fd36670c7126b to your computer and use it in GitHub Desktop.
Save troyharris/7e72f66a9b4242a3975fd36670c7126b to your computer and use it in GitHub Desktop.
Count lines of code recursively
# For Django in the root folder
find . -name '*.py' | xargs wc -l
# For Angular, in the ROOT/src/app folder
find . -name '*.ts' | xargs wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment