Skip to content

Instantly share code, notes, and snippets.

@redgluten
Created May 12, 2015 08:09
Show Gist options
  • Save redgluten/bdb72aaa5665d9320932 to your computer and use it in GitHub Desktop.
Save redgluten/bdb72aaa5665d9320932 to your computer and use it in GitHub Desktop.
Count the number of lines of code from a specific file extension in a project
( find ./ -name '*.js' -print0 | xargs -0 cat ) | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment