Skip to content

Instantly share code, notes, and snippets.

@mrjabba
Created December 6, 2012 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrjabba/4227562 to your computer and use it in GitHub Desktop.
Save mrjabba/4227562 to your computer and use it in GitHub Desktop.
jar scanning
NOTE how to to look for stuff inside a directory of jar files from the command line
for i in *.jar; do jar -tvf "$i" | grep com.foo; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment