Created
September 22, 2011 00:55
-
-
Save searls/1233764 to your computer and use it in GitHub Desktop.
Find all the classes in all the jars in a directory and spit out the listing in /tmp/jars.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#awesome @magnustahre is awesome. | |
find . -name "*.jar" | while read jar ; do echo $jar ; unzip -l $jar ; done > /tmp/jars.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment