Adding some of my utility shell scripts to a common google page.
http://code.google.com/p/nixtils/
http://code.google.com/p/nixtils/
Technical tid-bits and more ! Leave a comment if you found something useful.
for ext in "*.java" "*.xml" "*.css" "*.jsp" "*.js" "*.sql"
do
echo -n "$ext,$location,"
find ./$location -iname "$ext" -exec wc -l '{}' \;|gawk '{total+=$1} END{print total}'
done