I'm trying to get this Java-based program to run on OS X: http://cbds.free.fr/Softwares/PictoDS/?language=en The file to run is apparently pictods.sh... But I can't seem to get it to work. I've got the latest version of Java and I've tried opening it in the Java Applet Launcher, but to no success. Any ideas?
Well a .sh file is generally a shell script, I don't use a Mac, but on Linux, you would just execute the script: Code: $ chmod +x pictods.sh $ ./pictods.sh Incidentally all the script does is cd into a subdirectory then execute java on the jar file.