Method Process.spawn()
- Method
spawn
__deprecated__Processspawn(stringcommand,void|Stdio.Streamstdin,void|Stdio.Streamstdout,void|Stdio.Streamstderr)- Description
Spawns a process that executes
commandas a command shell statement ("/bin/sh -c" for Unix, "commandcmd /c" for Windows).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.
- Returns
Returns a Process.Process object for the created process.
- See also
- Deprecated
Replaced by Process.Process.