Created
April 20, 2017 02:43
-
-
Save bparry02/c01fddb3a01ff6e9ae172e46ca6fdc93 to your computer and use it in GitHub Desktop.
Search for a Java class name in JARs in all subdirectories
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/sh | |
| # find-class-in-jar.sh [class-name] | |
| grep $1 `find . \-name '*.jar'` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment