Thursday, February 1, 2018

Locate Class File in JAR

This is a really easy way on Linux to find a class file in a set of JAR files:

find myDirectory/ -name "*.jar" | xargs grep HelloWorld.class

No comments:

Followers