Created
June 20, 2017 15:50
-
-
Save troyharris/7e72f66a9b4242a3975fd36670c7126b to your computer and use it in GitHub Desktop.
Count lines of code recursively
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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