calling jar file from ksh

Hi,

I have a below command in ksh ....

$JAVA_HOME/bin/java -cp "/usr/orabase/product/10.2.0/lib:/usr/java/javajar/common/sched.jar:/usr/orabase/product/10.2.0/jdbc/lib/ojdbc14_g.jar:/usr/orabase/product/10.2.0/jdbc/lib/classes12.jar" com.abrt.smart.Smart

I want to know where the Smart.class is located. infact i want to know where the jar file is located...

Could anyone help...

Thanks..

There are 3 jar files mentioned in the CLASSPATH being set, e.g. /usr/java/javajar/common/sched.jar, I'm no java guru but the Smart.class function is going to be in one of them or any jar file in /usr/orabase/product/10.2.0/lib.

Running your line with an extra parameter line:

-verbose:class

may help, take a look at the java(1) manpage on your system.