Find a Class in a bunch of JAR Files for j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in … More