spawnShell

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)
  3. Process spawnShell(string command, string[string] env, Config config, NativePath workDir, NativePath shellPath)
    @safe
    spawnShell
    (
    scope string command
    ,
    const string[string] env = null
    ,,,)

Return Value

Type: Process

A reference to the running process.

See Also

pipeProcess, execute

Meta