In Bash, how do I count the number of non-blank lines of code in a project?
cat foo.c | sed '/^s*$/d' | wc -l
And if you consider comments blank lines:
cat foo.pl | sed '/^s*#/d;/^s*$/d' | wc -l
Although, that's language dependent.
2.1m questions
2.1m answers
60 comments
57.0k users