Skip to content

Instantly share code, notes, and snippets.

@st63jun
Created May 30, 2012 10:39
Show Gist options
  • Save st63jun/2835415 to your computer and use it in GitHub Desktop.
Save st63jun/2835415 to your computer and use it in GitHub Desktop.
現在のディレクトリ (サブディレクトリ含む) にある,コメント,空行を除いたJavaソースコードの行数を調べる
cat `find . -name "*.java" -print` | sed -e '/¥/¥*/,/¥*¥//d' -e '/^[[:blank:]]*¥/¥/.*$/d' -e '/^[^[:graph:]]*$/d' | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment