On Fri, May 18, 2001 at 03:55:50AM +0200, Georg Rehfeld wrote:
> Hi all,
> 
> Peter Fagerlund asked:
> >> In what jar file is org.jboss.jdbc located - I need to do a test run with
> 
> Toby Allsopp answered:
> > jboss.jar, I think.
> 
> yes, there it is.
> 
> Please don't call me a Spammer, but may I suggest a shareware tool
> for the W98/NT/W2K users which helps me a lot in my daily work:
> 'Windows Commander' (http://www.ghisler.com/). The reason I name
> it here is: it can easily made to search all sorts of archives
> including Java JARs for files and contents of files. Archive
> and ftp handling is seemlessy integrated and the usability is
> tuned to the last keystroke, it's a really superb replacement
> against the explorer :-)
> 
> If anybody is interested how to set up WC to search Java JAR
> archives, I can explain.

#!/bin/sh
for jarfile in `find $JBOSS_HOME -name '*.jar'`; do
  unzip -l $jarfile | fgrep -s org/jboss/jdbc && echo $jarfile
done

You could do this with single find command, but it's ugly.

If you're interested in this amazing tool, I can offer you a very
competitive price :-)

Toby.

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to