Spawns a child process returning a handle to it. Child's `stdout` will be piped for further reading from it, but `stderr` will be inherited. See the docs for [`Child`] for more details.
(&self)
| 429 | /// `stderr` will be inherited. |
| 430 | /// See the docs for [`Child`] for more details. |
| 431 | pub fn spawn_piped(&self) -> Result<Child> { |
| 432 | self.spawn_with(Stdio::piped(), Stdio::inherit()) |
| 433 | } |
| 434 | |
| 435 | /// More flexible version of `spawn` methods that allows you to specify |
| 436 | /// any combination of `stdout` and `stderr` conifigurations. |
no test coverage detected