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.
|
feedback
|
migrated from stackoverflow.com May 3 '11 at 3:20
This question came from our site for professional and enthusiast programmers.
|
Um...if it's not in your
Or if it's not in your
Or if it's in your
| |||||||
feedback
|
|
Simple answer: './FILE.sh' or 'sh FILE.sh'. If you can't execute it, chmod +x FILE.sh | |||
|
feedback
|
|
try sh -x single .sh file (assuming the +x permissions are set). Also I am assuming you probably need some jdk/jre installation. | |||
|
feedback
|
|
A quick alternative to
is to use double dots as follows:
This is useful if the file does not have the execute bit set. | |||
|
feedback
|
