Skip to content

Instantly share code, notes, and snippets.

@shanethehat
Created March 27, 2017 12:07
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 shanethehat/24d34985f6091d5ff5f6d6b1798eba53 to your computer and use it in GitHub Desktop.
Save shanethehat/24d34985f6091d5ff5f6d6b1798eba53 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
find . -iname '*.jar' -print | while read jar; do
echo "$jar:"
unzip -qq -l $jar | sed 's/.* //' | while read cls; do
unzip -c $jar $cls | grep -q 'Tag read' && echo " "$cls
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment