ezexec 0.4.1

A simple API to execute binaries or shell commands via `std::process::Command`
Documentation
1
2
3
4
5
6
7
use ezexec::{error::Error, ExecBuilder};

#[test]
fn ls() -> Result<(), Error> {
    ExecBuilder::with_shell("ls")?.spawn_transparent()?.wait()?;
    Ok(())
}