Created
June 17, 2011 19:18
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # handiest shell function/alias I have ever written function grepJars() { for x in `find . -name "*.jar"`; do echo $x unzip -l $x|grep $1 done }