Question #232940 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/232940

RaiMan proposed the following answer:
internally, this is used to open an app on Linux:

String cmd[] = {"sh", "-c", "("+ appName + ") &\necho -n $!"};
Process p = Runtime.getRuntime().exec(cmd);

I know, that the "echo ..." is to get back the process id (which seems
to work in your case).

But I cannot tell you, why this does not work in your case as you expect
it to do.

Since you are on the Java level anyway, you might decide to use the
basic Java features to start your app.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to