ezexec
Welcome to ezexec
🎉
ezexec
provides a simple API to execute binaries or shell commands. Furthermore it implements a trivial but usually
good-enough API to find a binary in PATH
or to get the current shell.
```rust use ezexec::{ ExecBuilder, error::Error };
fn list() -> Result<(), Error> { // Lists all files in the current directory and forwards the output to the parent's stdout ExecBuilder::withshell("ls")? .spawntransparent()? .wait()?; Ok(()) } ```