Skip to content

Instantly share code, notes, and snippets.

@mentix02
Created March 18, 2020 13:02
Show Gist options
  • Save mentix02/debc76e1e1595590f9fed18b7c33063f to your computer and use it in GitHub Desktop.
Save mentix02/debc76e1e1595590f9fed18b7c33063f to your computer and use it in GitHub Desktop.
Counts the number of lines of code in a git project except the LICENSE and .gitignore file.
python2 -c "print(`git ls-files | xargs wc -l | grep '\d total' | egrep -o -e '\d+'` - `wc -l LICENSE | egrep -oe '\d+'` - `wc -l .gitignore | egrep -oe '\d+'`)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment