Possible Duplicate:
How to run Unix shell script from java code?
I know you can use Runtime.exec() or a ProcessBuilder to execute native commands on windows in this way:
cmd /c command_goes_here
But what is the quivelant of this on UNIX?
Or will all commands work straight through Java? Does it have internal terminal commands like Windows does?