Command is a convience wrapper over DefaultCmder.Command
(command string, args ...string)
| 57 | |
| 58 | // Command is a convience wrapper over DefaultCmder.Command |
| 59 | func Command(command string, args ...string) Cmd { |
| 60 | return DefaultCmder.Command(command, args...) |
| 61 | } |
| 62 | |
| 63 | // CombinedOutputLines is like os/exec's cmd.CombinedOutput(), |
| 64 | // but over our Cmd interface, and instead of returning the byte buffer of |