Skip to content

Instantly share code, notes, and snippets.

@halkeye
Created October 23, 2015 05:20
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 halkeye/5ee03cf36972e9ce2561 to your computer and use it in GitHub Desktop.
Save halkeye/5ee03cf36972e9ce2561 to your computer and use it in GitHub Desktop.
hacked solution to track down jar files with top level class files
for jar in $(find ~/.m2/repository -name '*.jar'); do unzip -qql $jar | awk '{ if ($4 ~ /^\w+\.class$/) exit 1 }' || echo $jar ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment