On Friday 16 January 2004 10:12, Vikas Phonsa wrote:
> If there is any better way then pls advice, I would like to know that.

Get started with Linux :o)  or at least Cygwin

Something like this would do what you are asking for ...

for FILE in `find . -name "*.jar"` ; do 
  TMP=`jar tf $FILE | grep "org/hedhman/niclas/MyClass"`
  if [ "$TMP" ] ; then
    echo $FILE
  fi
done



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to