In Bash, how do I count the number of non-blank lines of code in a project?
And if you consider comments blank lines:
Although, that's language dependent. |
|||||||||||||||||||||
|
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. |
|||||
|
|
If you want to use something other than a shell script, try CLOC:
|
|||
|
|
|
There are many ways to do this, using common shell utilities. My solution is:
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' counts lines, words, chars, so to count all lines (including blank ones) use:
To filter out the blank lines, you can use grep:
'-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. |
|||||
|
should do the trick just fine |
|||||
|
|
It's kinda going to depend on the number of files you have in the project. In theory you could use
Where you can fill the list of files by using the find utility.
Would give you a line count per file. |
|||||
|
gives an aggregate count for all files in the current directory and its subdirectories. HTH! |
|||
|
|
|
grep -v ^$ filename wc -l | sed -e 's/ //g' Gives the count of number of lines without counting the blank lines |
|||
|
|
|
If you want the sum of all non-blank lines for all files of a given file extension throughout a project:
First arg is the project's base directory, second is the file extension. Sample usage:
It's little more than a collection of previous solutions. |
|||
|
|
|
Script to recursively count all non-blank lines with a certain file extension in the current directory:
Sample usage:
|
|||
|
There's already a program for this on linux called 'wc'. Just
and it gives you the total lines and the lines for each file. |
|||||
|

foo.c). Any thoughts about the toal number of lines in a project (e.g. many files in directory structure, and excluding binary files)? – solvingPuzzles Sep 15 '12 at 6:24