Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We've got a PHP application and want to count all the lines of code under a specific directory and its subdirectories. We don't need to ignore comments, as we're just trying to get a rough idea.

wc -l *.php

That command works great within a given directory, but ignores subdirectories. I was thinking this might work, but it is returning 74, which is definitely not the case...

find . -name '*.php' | wc -l

What's the correct syntax to feed in all the files?

share|improve this question

18 Answers

up vote 300 down vote accepted

Try

find . -name '*.php' | xargs wc -l

This may help as well

http://www.dwheeler.com/sloccount/

It'll give an accurate source lines of code count for whatever hierarchy you point it at, as well as some additional stats

share|improve this answer
Thanks. It worked perfectly! – user77413 Aug 31 '09 at 21:40
4  
cloc.sourceforge.net might be worth looking as an alternative to sloccount (more languages but less informations) – AsTeR May 17 '12 at 22:46
1  
with include files also: find . -name '*.php' -o -name '*.inc' | xargs wc -l – rymo Jul 24 '12 at 13:32
2  
This will print more than one number when there are many files (because wc will be run multiple times. Also doesn't handle many special file names. – l0b0 Apr 23 at 11:56
Is there a way to exclude a directory (e.g ./tests) from the count? – idober May 21 at 4:25

For another one-liner:

( find ./ -name '*.php' -print0 | xargs -0 cat ) | wc -l

works on names with spaces, only outputs one number

share|improve this answer
3  
+1 for -print0/-0 – Dennis Williamson Aug 31 '09 at 21:22
+1 ditto...searched forever...all the other "find" commands only returned the # of actual files....the -print0 stuff here got the actual line count for me!!! thanks! – Ronedog Feb 26 '11 at 5:10
Best solution I've found. I parameterized the path and filetype and added this code to a script on my path. I plan to use it frequently. – S.C. Jun 18 '12 at 21:29

If using a decently recent version of Bash (or ZSH), it's much simpler:

wc -l **/*.php
share|improve this answer
Why isn't this a much better rated answer! – Jakob Bowyer Feb 17 at 23:37
Well, I came very late to the party ;-) – Michael Wild Feb 18 at 13:13
I am upvoting this for simplicity, however I just want to point out that it doesn't appear to search the directories recursively, it only checks the subdirectories of the current directory. This is on SL6.3. – Godric Seer Apr 16 at 1:44
That depends on your shell and the options you have set. Bash requires globstar to be set for this to work. – Michael Wild Apr 16 at 5:52

For everyone stuck with windows:

After I run into some problems counting lines of code under Windows, I found cloc.

Serves the same purpose of sloccount but works flawlessly on Windows.

share|improve this answer
That's a lovely tool that runs nice and quickly giving useful stats at the end. Love it. – Rob Forrest Jun 15 '12 at 13:23
OR.. install mingw32. OR.. reboot and install Linux or FreeBSD :P – Luka Ramishvili Aug 10 '12 at 11:23

You didn't specify how many files are there or what is the desired output. Is this what You are looking for:

find . -name '*.php' | xargs wc -l

?

share|improve this answer
2  
This will work, as long as there are not too many files : if there are a lot of files, you will get several lines as a result (xargs will split the files list in several sub-lists) – Pascal MARTIN Aug 31 '09 at 17:50
ah, yes. That's why I said He didn't specify how many files are there. My version is easier to remember, but Shin's version is better if You have more than a few files. I'm voting it up. – Reef Mar 18 '10 at 18:53

There is a little tool called sloccount to count the lines of code in directory. It should be noted that it does more than you want as it ignores empty lines/comments, groups the results per programming language and calculates some statistics.

share|improve this answer

More common and simple as for me, suppose you need to count files of different name extensions (say, also natives)

wc `find . -name '*.[h|c|cpp|php|cc]'`
share|improve this answer

Yet another variation :)

$ find -name '*.php' | xargs cat | wc -l
share|improve this answer

what you want is a simple for loop:

total_count=0
for file in $(find . -name *.php -print)
do
count=$(wc -l $file)
let total_count+=count
done
echo $total_count
share|improve this answer
2  
isn't this overkill compared to the answers that suggest xargs? – Nathan Fellman Aug 31 '09 at 17:52
3  
No, Nathan. The xargs answers won't necessarily print the count as a single number. It may just print a bunch of subtotals. – Rob Kennedy Aug 31 '09 at 18:10
what will this program do if file names contain spaces? What about newlines? ;-) – Reef Aug 31 '09 at 20:05
5  
If your file names contain new lines, I'd say you have bigger problems. – Kzqai Aug 31 '12 at 18:23

Something different

wc -l `tree -if --noreport | grep -e'\.php$'`

This works out fine, but you need to have at least one *.php file in the current folder or one of its subfolders, or else wc stalls

share|improve this answer

If you need just the total number of lines in let's say your PHP files you can use very simple one line command even under Windows if you have GnuWin32 installed. Like this:

cat `/gnuwin32/bin/find.exe . -name *.php` | wc -l

You need to specify where exactly is the find.exe otherwise the Windows provided FIND.EXE (from the old DOS-like commands) will be executed, since it is probably before the GnuWin32 in the environment PATH, and has different parameters and results.

Please note that in the command above you should use back-quotes, not single quotes.

share|improve this answer
In the example above I'm using the bash for windows instead of the cmd.exe that's why there are forward slashes "/" and not back slashes "\". – Neven Boyanov Jul 5 '11 at 8:26

for sources only:

wc `find`

to filter, just use grep

wc `find | grep .php$`
share|improve this answer

Surprisingly there's no answer based on find's -exec and awk. Here we go:

find . -type f -exec wc -l {} \; | awk '{ SUM += $0} END { print SUM }'

This snippet finds for all files (-type f). To find by file extension, use -name:

find . -name *.py -exec wc -l {} \; | awk '{ SUM += $0} END { print SUM }'
share|improve this answer

very simply

find /path -type f -name "*.php" | while read FILE
do
    count=$(wc -l < $FILE)
    echo "$FILE has $count lines"
done
share|improve this answer
it will fail if there is a space or a newline in one of the filenames – Reef Mar 18 '10 at 19:11
cat \`find . -name "*.php"\` | wc -l
share|improve this answer
cat `find -name "*.php"` | wc -l

should do the trick. This answer has been given again, sorry (missed the other answer link mine)..

share|improve this answer
1  
That won't work at all. Did you try it before posting? You need to use xargs, something like this: find . -name "*.php" | xargs cat | wc -l – Bohemian Dec 6 '11 at 12:10
hmm... Yes, I did try it, I originally posted the wrong snippet (ls piped to grep instead of find -name) but that is not the matter. All my comands are binary hashes, no aliasing is going on. I don;t know why you say this is not working? find output can be used by cat on any system I've been on. On another matter I just noticed that my solution is a dupe, how do I delete it? – Kiriakos k Krastillis Dec 6 '11 at 12:37
It doesn't work on mac os, but it does work on Linux. To delete, there should be a delete link just under the post. If not, perhaps you don't have enough privilege yet. – Bohemian Dec 7 '11 at 5:20

You can also try CLOC (requires Perl)

share|improve this answer

If you want your results sorted by number of lines, you can just add | sort or | sort -r (-r for descending order) to the first answer, like so:

find . -name '*.php' | xargs wc -l | sort -r
share|improve this answer
Since the output of xargs wc -l is numeric, one would actually need to use sort -n or sort -nr. – Dustin I. Feb 8 at 20:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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