Method Process.system()
- Method system
intsystem(stringcommand,void|Stdio.Streamstdin,void|Stdio.Streamstdout,void|Stdio.Streamstderr)- Description
Executes
commandas a shell statement ("/bin/sh -c" for Unix, "commandcmd /c" for Windows), waits until it has finished and returns its return value.command- Parameter
stdin - Parameter
stdout - Parameter
stderr Stream objects to use as standard input, standard output and standard error, respectively, for the created process. The corresponding streams for this process are used for those that are left out.
- See also