1use procmd::cmd; 2 3fn main() { 4 let mut pipe_cmd = cmd!("ls", "/" => "grep", "bin"); 5 let child = pipe_cmd.spawn().unwrap(); 6}