Process

Represents a single running process in the chain.

Constructors

this
this(string[] args, std.stdio.File upstream)

Creates a new process (and spawns it).

this
this(string[] args)

Creates a new process (and spawns it)

Members

Functions

wait
int wait()

Waits for this process to complete and returns the exit code.

Properties

stderr
std.stdio.File stderr [@property getter]

File object of this processes stderr

stdout
std.stdio.File stdout [@property getter]

File object of this processes stdout

Meta