You say you're new to Linux development; I don't know if that means new to Unix in general so I apologize if this suggestion is hopelessly basic. I wonder if you've used the 'find' command to locate the .war correctly.

Wrong:

find *.war

find -name *.war .

Right:

find -name '*.war' .

Again, apologies if this is too basic. Actually, in Linux, I really like the 'locate' program most of the time, but I don't think it will help you as I believe it relies on a periodically updated index of file locations.

K.C.




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



Reply via email to