Created
October 23, 2015 05:20
-
-
Save halkeye/5ee03cf36972e9ce2561 to your computer and use it in GitHub Desktop.
hacked solution to track down jar files with top level class files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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