pipeProcess

Equivalent to std.process.pipeProcess.

  1. ProcessPipes pipeProcess(string[] args, Redirect redirect, string[string] env, Config config, NativePath workDir)
    @safe @trusted
    pipeProcess
    (
    scope string[] args
    ,
    Redirect redirect = Redirect.all
    ,
    const string[string] env = null
    ,,)
  2. ProcessPipes pipeProcess(string program, Redirect redirect, string[string] env, Config config, NativePath workDir)

Return Value

A struct containing the process and created pipes.

See Also

spawnProcess, execute

Meta