function Command.arg
function Command.args
function Command.current_dir
function Command.env
function Command.spawn
Executes the command as a child process, returning a handle to it.
By default, stdin, stdout and stderr are inherited from the parent.
function Command.status
Executes a command as a child process, waiting for it to finish and collecting its status. Unlike
cmd.spawn().wait() and cmd.spawn().wait_with_output(), this function does not close the stdin handle.
By default, stdin, stdout and stderr are inherited from the parent.
function Command.stderr
Configuration for the child process’s standard error (stderr) handle.
Defaults to [
inherit] when used with [spawn] or [status], and
defaults to [piped] when used with [output].
function Command.stdin
Configuration for the child process’s standard input (stdin) handle.
Defaults to [
inherit] when used with [spawn] or [status], and
defaults to [piped] when used with [output].
function Command.stdout
Configuration for the child process’s standard output (stdout) handle.
Defaults to [
inherit] when used with [spawn] or [status], and
defaults to [piped] when used with [output].
