Counting Lines of Code in a Directory Recursively
7 months ago
Counting lines in Python files:
find . -name '*.py' | xargs wc -l
References
How to count all the lines of code in a directory recursively?
Counting lines in Python files:
find . -name '*.py' | xargs wc -l
How to count all the lines of code in a directory recursively?