CreateWithoutStdio creates a new Lima command without connecting the stdio of it to the stdio of the current process. It is usually used when either Output() or CombinedOutput() instead of Run() needs to be invoked on the returned command.
(args ...string)
| 21 | // CreateWithoutStdio creates a new Lima command without connecting the stdio of it to the stdio of the current process. |
| 22 | // It is usually used when either Output() or CombinedOutput() instead of Run() needs to be invoked on the returned command. |
| 23 | CreateWithoutStdio(args ...string) Command |
| 24 | // RunWithReplacingStdout runs a new Lima command, |
| 25 | // connects the stdio of it to the stdio of the current process, |
| 26 | // and replaces all the strings in stdout according to rs. |
no outgoing calls