Hi there!
I want to run some Linux script files out of a Java application.
I'm currently using a code like this:
Runtime rt = Runtime.getRuntime();
Process p=rt.exec("//home//scriptFile1");
But this isn't working. Although I'm getting no exeption, the file isn't executed.
It looks like he's doing something, but he's definitly not processing the file.
I think the problem is probably, that in scriptFile1, I call some other script files (which call itself some other script files).
E.g. like this:
scriptFile1:
scriptFile2
binary1
binary2
scriptFile3
Any ideas?
Thank you!