Options for the fork
method.
Fields
optionalsilent:Null<Bool>
If true
, stdin, stdout, and stderr of the child will be piped to the parent,
otherwise they will be inherited from the parent, see the "pipe" and "inherit"
options for ChildProcessSpawnOptions.stdio
for more details (default is false
)
optionalshell:Null<EitherType<Bool, String>>
Shell to execute the command with. Default: '/bin/sh' on UNIX, 'cmd.exe' on Windows.
The shell should understand the -c switch on UNIX or /s /c on Windows. On Windows, command line parsing should be compatible with cmd.exe.