Skip to content

Instantly share code, notes, and snippets.

@dherman
Created September 13, 2012 23:26
Show Gist options
  • Save dherman/3718562 to your computer and use it in GitHub Desktop.
Save dherman/3718562 to your computer and use it in GitHub Desktop.
count LOC in mozilla-central
#!/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