Skip to content

Instantly share code, notes, and snippets.

@rajeshpv
Created August 12, 2011 18:04
Show Gist options
  • Select an option

  • Save rajeshpv/1142601 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshpv/1142601 to your computer and use it in GitHub Desktop.
#!/bin/bash
find $1 -name '*.jar' | while read f
do
jar tf "$f" | grep "$2" && echo "[in $f]"
done
## findjar lib javax/servlet/Filter.class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment