On Linux, it was pretty easy. I just did

Runtime rt = Runtime.getRuntime();
Process p = rt.exec(shell location);
p.destroy();

But how do I do this in windows which doesn't natively allow .sh scripts? I can get the script to run using Cygwin. Is there a way I can somehow use Cygwin within Eclipse to run the script?

link|improve this question

40% accept rate
feedback

2 Answers

perhaps try adding the cygwin bin directory to your system PATH and then launch the sh.exe with the script as an argument.

link|improve this answer
I usually prefer mingw -- as processes [seem to] start much faster than cygwin, even if it's "less complete" of an environment. – pst Dec 3 '11 at 0:51
How do you run sh.exe with an argument? Every thing I try complains about an error. Is the format: navigate to cygwin/bin, do "sh.exe args" where args is the full file directory? – Smipims Dec 3 '11 at 6:58
feedback

Launching sh.exe (Cygwin, MinGW, or whatever) with the script as the argument is probably the best solution.

Another solution might be to update your folder options so that files with a .sh suffix are opened with sh.exe.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.