In Bash, how do I count the number of non-blank lines of code in a project?

link|improve this question

feedback

13 Answers

up vote 39 down vote accepted
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.

link|improve this answer
6  
Not sure why you're using cat there. Use foo.c or foo.pl as the filename to pass to sed. sed '/^\s*$/d' foo.c | wc -l – Andy Lester Sep 24 '08 at 3:58
8  
Just habit. I read pipelines from left to right, which means I usually start with cat, then action, action, action, etc. Clearly, the end result is the same. – Michael Cramer Sep 24 '08 at 14:06
10  
To do this for all files in all subfolders and to exclude comments with '//', extend this command into this: find . -type f -name '*.c' -exec cat {} \; | sed '/^\s*#/d;/^\s*$/d;/^\s*\/\//d' | wc -l – Jami Jul 8 '10 at 16:28
2  
@Andy: Give him the Useless Use Of Cat award! – Andrew Grimm Nov 1 '10 at 0:25
1  
You can read left to right without UUOC: < foo.pl sed 'stuff' | wc -l. – jw013 Dec 4 '11 at 21:44
show 1 more comment
feedback
#!/bin/bash
find . -path './pma' -prune -o -path './blog' -prune -o -path './punbb' -prune -o -path './js/3rdparty' -prune -o -print | egrep '\.php|\.as|\.sql|\.css|\.js' | grep -v '\.svn' | xargs cat | sed '/^\s*$/d' | wc -l

The above will give you the total count of lines of code (blank lines removed) for a project (current folder and all subfolders recursively).

In the above "./blog" "./punbb" "./js/3rdparty" and "./pma" are folders I blacklist as I didn't write the code in them. Also .php, .as, .sql, .css, .js are the extensions of the files being looked at. Any files with a different extension are ignored.

link|improve this answer
variation for a Rails app: find . -path './log' -prune -o -path './trunk' -prune -o -path './branches' -prune -o -path './vendor' -prune -o -path './tmp' -prune -o -print | egrep '\.rb|\.erb|\.css|\.js|\.yml' | grep -v 'svn' | xargs cat | sed '/^\s*$/d' | wc -l – poseid Mar 17 at 20:47
feedback

If you want to use something other than a shell script, try CLOC:

cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. It is written entirely in Perl with no dependencies outside the standard distribution of Perl v5.6 and higher (code from some external modules is embedded within cloc) and so is quite portable.

link|improve this answer
feedback

There are many ways to do this, using common shell utilities.

My solution is:

grep -cve '^\s*$' <file>

This searches for lines in <file> the do not match (-v) lines that match the pattern (-e) '^\s*$', which is the beginning of a line, followed by 0 or more whitespace characters, followed by the end of a line (ie. no content other then whitespace), and display a count of matching lines (-c) instead of the matching lines themselves.

An advantage of this method over methods that involve piping into wc, is that you can specify multiple files and get a separate count for each file:

$ grep -cve '^\s*$' *.hh

config.hh:36
exceptions.hh:48
layer.hh:52
main.hh:39
link|improve this answer
Thanks! Incidentally, wc does provide a count for each given file, plus a total. – Jonathan Hartley Nov 9 '09 at 22:06
Not if you're piping into it though, as standard in counts as just one file. – SpoonMeiser Nov 10 '09 at 11:37
feedback

'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 '^\s*$' *.py | wc

'-v' tells grep to output all lines except those that match '^' is the start of a line '\s*' is zero or more whitespace characters '$' is the end of a line *.py is my example for all the files you wish to count (all python files in current dir) pipe output to wc. Off you go.

I'm answering my own (genuine) question. Couldn't find an stackoverflow entry that covered this.

link|improve this answer
4  
\W isn't a match for whitespace, it matches non-word characters. It's the opposite of \w, word characters. \W Will match anything that isn't alphanumeric or underscore, and therefore won't do what you claim it does here. You mean \s – SpoonMeiser Sep 30 '08 at 21:29
feedback
cat 'filename' | grep '[^ ]' | wc -l

should do the trick just fine

link|improve this answer
Why use cat and pipe the file into grep, when you can pass the filename as an argument to grep in the first place? – SpoonMeiser Sep 22 '08 at 13:30
true, it's just an old alias I have around... it does essentially the same as your solution instead of using the inverse – curtisk Sep 22 '08 at 13:36
feedback
awk '/^[[:space:]]*$/ {++x} END {print x}' "$testfile"
link|improve this answer
feedback

It's kinda going to depend on the number of files you have in the project. In theory you could use

grep -c '.' <list of files>

Where you can fill the list of files by using the find utility.

grep -c '.' `find -type f`

Would give you a line count per file.

link|improve this answer
. matches whitespace. This solution only works if you consider a line containing only whitespace to be non-blank, which it technically is, although it probably isn't what you're after. – SpoonMeiser Sep 22 '08 at 13:31
feedback

grep -v ^$ filename wc -l | sed -e 's/ //g'

Gives the count of number of lines without counting the blank lines

link|improve this answer
feedback

If you want the sum of all non-blank lines for all files of a given file extension throughout a project:

while read line
do grep -cve '^\s*$' "$line"
done <  <(find $1 -name "*.$2" -print) | awk '{s+=$1} END {print s}'

First arg is the project's base directory, second is the file extension. Sample usage:

./scriptname ~/Dropbox/project/src java

It's little more than a collection of previous solutions.

link|improve this answer
feedback
grep -v '^\W*$' `find -type f` | grep -c '.' > /path/to/lineCountFile.txt

gives an aggregate count for all files in the current directory and its subdirectories.

HTH!

link|improve this answer
feedback

Script to recursively count all non-blank lines with a certain file extension in the current directory:

#!/usr/bin/env bash
(
echo 0;
for ext in "$@"; do
    for i in $(find . -name "*$ext"); do
        sed '/^\s*$/d' $i | wc -l ## skip blank lines
        #cat $i | wc -l; ## count all lines
        echo +;
    done
done
echo p q;
) | dc;

Sample usage:

./countlines.sh .py .java .html
link|improve this answer
Thanks go to @Andy Lester (+1 on your comment) for the "non-blank" part of the recipe. – Kazark Aug 14 '11 at 1:09
Thanks also to @Michael Cramer (+1 on your post) for originally posting the (slightly more verbose) "non-blank" solution. – Kazark Aug 14 '11 at 1:10
feedback

There's already a program for this on linux called 'wc'.

Just

wc -l *.c 

and it gives you the total lines and the lines for each file.

link|improve this answer
Hey. 'wc' by itself doesn't search subdirs, and it doesn't filter out blank lines, both explicitly asked for in the question. – Jonathan Hartley May 8 at 12:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.