6
votes
8answers
5k views
count (non-blank) lines-of-code in bash
In Bash, how do I count the number of non-blank lines of code in a project?
…
2
votes
count (non-blank) lines-of-code in bash
'wc' counts lines, words, chars, so to count all lines (including blank ones) use:
wc *.py
To filter out the blank lines, you can use grep:
grep -v …
