Thanks to N. Jarvis for the guts of this:
#!/bin/bash
echo -n "Enter class name: "
read -e SEARCHEE
echo Beginning recursive search through jars $PWD for $SEARCHEE
for i in `find . -name "*.jar"`; do echo $i; jar tf $i | grep $SEARCHEE; done
When I started this blog (2004) it was to document Gentoo linux experiences and *nix adventures. Then it turned into posts regarding software development challenges and other findings. These days I mostly tweet (rollinsruss) and my posts are infrequent.
No comments:
Post a Comment