pipe

std.process helper. Run a command, feed it the given input, and collect its output. Throw if it exited with non-zero status. Return output.

  1. T[] pipe(T[] input, string[] args, Params params)
    T[]
    pipe
    (
    T
    Params...
    )
    (
    in T[] input
    ,
    string[] args
    ,
    Params params
    )
    if (
    !hasIndirections!T
    )
  2. TData!T pipe(TData!T input, string[] args, Params params)
  3. T[] pipe(string[] args, T[] input, Params params)

Meta