procmd 0.1.0

A helper library for building commands
Documentation
1
2
3
4
5
6
use procmd::cmd;

fn main() {
    let mut pipe_cmd = cmd!("ls", "/" => "grep", "bin");
    let child = pipe_cmd.spawn().unwrap();
}