I am using Ubuntu and just downloaded the jmonkey game engine. Everything appears to be in a single .sh file. I am not really sure how I am supposed to run this.

http://jmonkeyengine.com/

link|improve this question
feedback

migrated from stackoverflow.com May 3 '11 at 3:20

This question came from our site for professional and enthusiast programmers.

6 Answers

Um...if it's not in your $PATH:

./your_shell_script.sh

Or if it's not in your $PATH and it's not executable:

sh your_shell_script.sh

Or if it's in your $PATH:

your_shell_script.sh
link|improve this answer
Do the second one if the file is not executable. Otherwise you need to have #!/bin/bash as the first line of the file, and then do chmod +x your_shell_script.sh – robbrit May 2 '11 at 22:28
+1 Very comprehensive! – Basic May 2 '11 at 22:30
I moved the file into my home directory and made it executable. It works now. – chief May 2 '11 at 22:31
feedback

Simple answer: './FILE.sh' or 'sh FILE.sh'. If you can't execute it, chmod +x FILE.sh

link|improve this answer
feedback

Try sh /path/to/downlaod/files/jME3_SDK_Alpha-4-linux.sh --help.

link|improve this answer
feedback

try sh -x single .sh file (assuming the +x permissions are set). Also I am assuming you probably need some jdk/jre installation.

link|improve this answer
feedback

Try this:

$ nohup ./your_file.sh <arguements> &
link|improve this answer
feedback

A quick alternative to

sh my_bash_script.sh

is to use double dots as follows:

. ./my_bash_script.sh

This is useful if the file does not have the execute bit set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown