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(); }