You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
285 B
Rust

use std::process::Command;
fn main() {
let output = Command::new("cat").arg("a.txt").output().unwrap();
if !output.status.success() {
println!("Command executed with failing error code");
}
println!("printing: {}", String::from_utf8(output.stdout).unwrap());
}