pub async fn spawn_then_wait_with_output(
input: Result<Output, Command>,
) -> Result<ProcessIo>Available on crate feature
tokio only.Expand description
Spawns a process then wait for its child’s output.
This function builds a std::process::Command from the flow’s
command builder, spawns a process, then waits for the output.