Skip to content

Instantly share code, notes, and snippets.

@davidmoten
Last active August 29, 2015 14:08
Show Gist options
  • Save davidmoten/346f6c16847d69942cf1 to your computer and use it in GitHub Desktop.
Save davidmoten/346f6c16847d69942cf1 to your computer and use it in GitHub Desktop.
count non comment non blank lines of source for java
find . -name *.java|grep -v target|xargs sed '/^\s*\/\//d;/^\s*$/d'|wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment