I have a runnable .jar file, which i can run from my linux terminal but I need to run that .jar file using a .sh file.
#!/bin/bash
java -jar executer.jar
If i double click the .sh file, terminal opens up but my code doesn't get executed. Kindly let me know, whats wrong.