Written by Philipp on 2016-02-26
Find a Class in a bunch of JAR Files
Coderwallfor j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in your folder. Output every JAR Name (to match found classes to JARs lateron) List Content of every JAR ( jar -tvf “$j” ) Grep for that specific ClassName grep -Hsi ClassName Original Post: https://coderwall.com/p/7d-mta/find-a-class-in-a-bunch-of-jar-files