Created
September 13, 2012 23:26
-
-
Save dherman/3718562 to your computer and use it in GitHub Desktop.
count LOC in mozilla-central
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
find . -name '*.tbl' -or -name '*.c' -or -name '*.cpp' -or -name '*.h' | xargs wc -l | fgrep total | awk '{total = total + $1}END{print total}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment