Skip to content

Instantly share code, notes, and snippets.

@searls
Created September 22, 2011 00:55
Show Gist options
  • Save searls/1233764 to your computer and use it in GitHub Desktop.
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
#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