« Dealing with the "Unable to create JAXBContext due to the security restriction" error in Glassfish. | Main | Orecchietta in Buffalo Arrabiata Sauce »

Comments

Patrick

The following shell script will search for the provided text within all jars under the current directory. Call it something like "jargrep", add it to your path, and then run "jargrep "

#!/bin/bash

for f in `find . -name '*.jar' -print`
do
if unzip -l $f | grep -q "$*"
then ls $f
fi
done

Patrick

Oops, above comment ate my angle brackets. Should say run "jargrep myclass" to search for myclass.

The comments to this entry are closed.