I'm trying to convert this Batch File originally written in Windows (obviously), it runs a Jar file which has many parameters after. Here it is:
I know off the bat the @echo off, start, javaw command doesn't work but for some reason when I run this command:
I get the following error:
If there is anyone that can help me, it would be appreciated. I personally do not like Java =/
-Alec
Code:
@echo off
start javaw -Xmx1000m -cp .;Theme.jar Gui 0 0 lowmem members 32
exit
I know off the bat the @echo off, start, javaw command doesn't work but for some reason when I run this command:
Code:
java -Xmx1000m .;Theme.jar Gui 0 0 lowmem members 32
Code:
Exception in thread "main" java.lang.NoClassDefFoundError: /
-bash: Theme.jar: command not found
If there is anyone that can help me, it would be appreciated. I personally do not like Java =/
-Alec