Hello
I have a shell script file (run.sh) that contains the following:
#!/bin/bash %JAVA_HOME%/bin/java -jar umar.jar
when i try to run it (./run.sh), it gives me following: umar/bin/run.sh: line 1: fg: no job control
However if I run same command directly on shell, it works perfectly.
What's wrong with the script file?
Thanks