fn main() { use std::process::Command; Command::new("ls") .arg("-l") .arg("-h") .arg("-a") .spawn() .expect("ls command failed to start"); }