Skip to content

Instantly share code, notes, and snippets.

@kespindler
Created November 21, 2011 02:44
Show Gist options
  • Save kespindler/1381454 to your computer and use it in GitHub Desktop.
Save kespindler/1381454 to your computer and use it in GitHub Desktop.
Count sloc in project
find . -type f -name '*.[hm]' -exec cat {} \; | sed '/^\s*#/d;/^\s*$/d;/^\s*\/\//d' | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment