module watt.process.pipe

Functions for dealing with pipes.

Code Map

//! Functions for dealing with pipes.
module watt.process.pipe;


enum BufferSize;

//! Run the given command and read back the output/error into a string.
fn getOutput(cmd: string, args: string[]) string { }
//! Run the given command and read back the output/error into a string.
fn getOutput(cmd: string, args: string[], retval: u32) string { }
fn getOutput(cmd: string, args: string[]) string

Run the given command and read back the output/error into a string.

Waits for the command to complete before returning.