Hi
I used a shell script to run a Java class. My script contains
#!/bin/sh
java -jar jobs/job.jar
These are my failed attempts to run it.
[root@]#sh testapp.sh
Unable to access jarfile jobs/job.jar
if I just do this at the command line it works fine
[root@]#java -jar jobs/job.jar
thanks.