Created
January 28, 2015 13:40
-
-
Save cfeduke/fe63b12ab07f87e76b38 to your computer and use it in GitHub Desktop.
find-java-class
This file contains 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
find-java-class () { | |
find . -name '*.jar' -type f -exec sh -c "jar -tf {} | grep -H --label {} \"$1\.class$\"" \; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment