spawnProcess

Equivalent to std.process.spawnProcess.

  1. Process spawnProcess(string[] args, string[string] env, Config config, NativePath workDir)
  2. Process spawnProcess(string program, string[string] env, Config config, NativePath workDir)
    @safe
    spawnProcess
    (
    scope string program
    ,
    const string[string] env = null
    ,,)

Return Value

Type: Process

A reference to the running process.

See Also

pipeProcess, execute

Meta