In Bash, how do I count the number of non-blank lines of code in a project?
awk '/^[[:space:]]*$/ {++x} END {print x}' "$testfile"