Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created July 8, 2011 11:53
Show Gist options
  • Save rogeriopvl/1071675 to your computer and use it in GitHub Desktop.
Save rogeriopvl/1071675 to your computer and use it in GitHub Desktop.
count the lines of code from a given file extension in the current folder (recursively)
# put this in your .bash_profile or .profile
# usage example: loc php
function loc() {
find . -name *.$1 | xargs wc -l
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment