bossy 0.1.0

Opinionated convenience wrapper for `std::process::Command` and friends
Documentation
bossy-0.1.0 has been yanked.

bossy

crates.io badge docs.rs badge Travis badge

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

use bossy::Command;

fn main() -> bossy::Result<()> {
    Command::impure("ls").with_arg("-l").run_and_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.