Created
May 17, 2018 12:53
-
-
Save sasuw/6256ca2b21f511170ee0e5e917e2168e to your computer and use it in GitHub Desktop.
Find invalid jar files in maven repository
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
| #!/bin/bash | |
| find ~/.m2/repository/ -name "*jar" | xargs -L 1 zip -T | grep error | grep invalid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment