Re: [jug-discussion] Pet Peave

2003-11-10 Thread William H. Mitchell
At 08:50 AM 11/10/03 -0700, Vincent Greene wrote: >On a unix machine with a bash shell, assuming all of your project jars are >in the same directory: ... Don't forget about Cygwin bash on Windows... - To unsubscribe, e-mail: [E

Re: [jug-discussion] Pet Peave

2003-11-10 Thread Vincent Greene
On a unix machine with a bash shell, assuming all of your project jars are in the same directory: for J in *.jar; do echo $J; jar tvf $J | grep Classname ; done Substitute your unqualified classname for Classname and you will get something like: # for J in *.jar; do echo $J; jar tvf $J | grep P

[jug-discussion] *** Meeting Reminder ***

2003-11-10 Thread Webmaster
The next meeting of the Tucson JUG will be on Tuesday, November 11, 2003 from 7-9PM. Mini-topic will be HSQLDB with Ant Full topic will be MD3 - A P2P program using JXTA for searching and cataloguing metadata - To unsubscribe,

Re: [jug-discussion] Pet Peave

2003-11-10 Thread Mike Oliver
Erik Hatcher wrote: if you scroll about half-way down here: http://linuxintegrators.com/blog/acoliver/code/ you'll find a few blog entries that have various scripts to do just this as well. use the force (er... the shell!) luke :) On Monday, November 10, 2003, at 08:53 AM, Mike Oliver wrote:

Re: [jug-discussion] Pet Peave

2003-11-10 Thread Mike Oliver
Erik Hatcher wrote: if you scroll about half-way down here: http://linuxintegrators.com/blog/acoliver/code/ you'll find a few blog entries that have various scripts to do just this as well. use the force (er... the shell!) luke :) On Monday, November 10, 2003, at 08:53 AM, Mike Oliver wrote:

Re: [jug-discussion] Pet Peave

2003-11-10 Thread Erik Hatcher
if you scroll about half-way down here: http://linuxintegrators.com/blog/acoliver/code/ you'll find a few blog entries that have various scripts to do just this as well. use the force (er... the shell!) luke :) On Monday, November 10, 2003, at 08:53 AM, Mike Oliver wrote: Chad Woolley wrote:

Re: [jug-discussion] Pet Peave

2003-11-10 Thread Mike Oliver
Chad Woolley wrote: I know there was a utility for this when I used Websphere Application Developer a few years ago. Search on DeveloperWorks for jar file finder or something along those lines. DOn't remember if it was standalone or an Eclipse/WSAD plugin. If you are interested and can't fin