Skip to content

Instantly share code, notes, and snippets.

@gbraccialli
Last active December 1, 2015 20:44
Show Gist options
  • Save gbraccialli/07536da4261102588def to your computer and use it in GitHub Desktop.
Save gbraccialli/07536da4261102588def to your computer and use it in GitHub Desktop.
#find . -name "*.jar" | while read filename; do echo $filename; jar tf $filename | grep CLASS_NAME_YOU_ARE_LOOKING_FOR; done
find . -name "*.jar" | while read filename; do echo $filename; jar tf $filename | grep $1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment