I attempted to make a shell script to launch a java program packaged into a .jar file. It should have been pretty simple.
#!/bin/sh
java -jar Test.jar
but for some reason this script never runs. i've manually executed the command and it works perfectly, i've checked the path of the JVM and nothing is wrong. What have i missed? can anyone help?