Skip to content

Instantly share code, notes, and snippets.

@objectx
Created April 26, 2013 11:50
Show Gist options
  • Save objectx/5466923 to your computer and use it in GitHub Desktop.
Save objectx/5466923 to your computer and use it in GitHub Desktop.
Count the SLOC...
find . -type f \( -name "*.cpp" -o -name "*.c" -o -name "*.cxx" -o -name "*.h" \) -print | xargs -n 32 cat | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment