bossy

crates.io badge docs.rs badge Travis badge

Opinionated convenience wrapper for std::process::Command and friends.

```rust use bossy::Command;

fn main() -> bossy::Result<()> { Command::impure("ls").witharg("-l").runand_wait()?; Ok(()) } ```

You can run the example to see the exact same code as above, but like, with output.

This isn't a ton of documentation, but this is a pretty thin wrapper, so documentation for std::process will typically apply here as well.