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