=========================================== 28/05/2013
look for class name in several jar files:
ll path-to-jars/ | awk {‘print “path-to-jars/”$9’} | grep “.jar” | while read thejar; do echo $thejar; jar -tvf $thejar | grep “yourClassName pattern”; done
previous command line will echo each jar file name and then classes that names matches your pattern