execute

Equivalent to std.process.execute.

  1. auto execute(string[] args, string[string] env, Config config, size_t maxOutput, NativePath workDir)
    @safe
    execute
    (
    scope string[] args
    ,
    const string[string] env = null
    ,,
    size_t maxOutput = size_t.max
    ,)
  2. auto execute(string program, string[string] env, Config config, size_t maxOutput, NativePath workDir)

Return Value

Type: auto

Tuple containing the exit status and process output.

See Also

spawnProcess, pipeProcess

Meta