Re: How to start java midlet from lin script

Originally Posted by
rpconnect
@maxx_730: i'm not 100% sure, but i dont think that is correct. if .profile was just a script that you wanted to execute then /home/native/.profile would execute it, but it would not update the environment variables in your current shell. the space between is required to make sure that the "exports" in the .profile script are actually exported to the current shell.
for example, go to /home/native and first do "./.profile" (this will execute the .profile script) then "echo $JAVA_HOME_FLASH" (JAVA_HOME_FLASH should be exported by the .profile script). without the additional ". " (dot and space) the result of the echo command is blank. but if you do ". ./.profile" (with the space between the first and second ".") the echo command will result in "/diska/.system/java"
Your probably right, my bash knowledge isnt exactly up-to-par with yours i think
Yes, but does it run Linux?