Skip to content

Instantly share code, notes, and snippets.

@npryce
Created September 12, 2014 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save npryce/ac735b7565c6a6355d97 to your computer and use it in GitHub Desktop.
Save npryce/ac735b7565c6a6355d97 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
for f in `find . -name '*.class'`
do
echo $f `basename $f .class|grep -Eo '[[:lower:]][eo]r([^[:lower:]]|$)'|wc -l`
done | sort -rnk 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment