There was a program that I used that made runnable .jar files.. All the ones I\'m finding now are ones that make .exe files.. I remember it also has the option to make the f
The command line
java -jar file.jar
Will run your jar file if it has a Main-Class defined as explained here.
Main-Class
You can use that command in a shell script.