Skip to content

Instantly share code, notes, and snippets.

@mr-pascal
Created June 29, 2022 19:10
Show Gist options
  • Save mr-pascal/30d479bc857bb76f2737bc1f560e9be1 to your computer and use it in GitHub Desktop.
Save mr-pascal/30d479bc857bb76f2737bc1f560e9be1 to your computer and use it in GitHub Desktop.
use std::process::Command;
fn main() {
// Build the command
let command = Command::new("ls")
.arg("-l")
.arg("-a")
//... continue ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment