var (
// StdOut returns the field of a [CommandOutput] representing `stdout` StdOut = P.Head[[]byte, []byte]
// StdErr returns the field of a [CommandOutput] representing `stderr` StdErr = P.Tail[[]byte, []byte]
)
CommandOutput represents the output of executing a command. The first field in the [Tuple2] is
stdout, the second one is stderr. Use StdOut and StdErr to access these fields