Run runs the command to the completion.
()
| 51 | type Cmd interface { |
| 52 | // Run runs the command to the completion. |
| 53 | Run() error |
| 54 | // CombinedOutput runs the command and returns its combined standard output |
| 55 | // and standard error. This follows the pattern of package os/exec. |
| 56 | CombinedOutput() ([]byte, error) |
no outgoing calls