Extension to Command
to spawn in a process group.
toml
[dependencies]
command-group = "1.0.0"
```rust use std::process::Command; use command_group::CommandGroup;
let mut child = Command::new("watch").arg("ls").group_spawn()?; let status = child.wait()?; dbg!(status); ```