Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: waded
  • Order by date
  1. waded

    How to search for java classes in a directory of jar files.

    I tried: find . -name '*.jar' -exec jar tvf {} | grep com.ibm.sslight /dev/null \; This was the result: bash-2.03$ find . -name '*.jar' -exec jar tvf {} | grep com.ibm.sslight /dev/null \; find: incomplete statement grep: can't open ; I received this from another post, and it works: find...
  2. waded

    How to search for java classes in a directory of jar files.

    I want to find out which jar file contains a given class. I have many jar files in a directory to search. I tried: find . -name '*.jar' -exec jar tvf {} \; | grep com.ibm.sslight This returned the class files in the given package, but it did not return the name of the jar file the package was...

Part and Inventory Search

Back
Top