pipeShell

Equivalent to std.process.pipeProcess.

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

Return Value

A struct containing the process and created pipes.

See Also

spawnProcess, execute

Meta