run_command

Function run_command 

Source
pub fn run_command(program: &str, args: Vec<&str>) -> Option<i32>
Expand description

Execute an arbitrary system command

ยงUsage

use fsutils::run_command;

assert!(run_command("ls", ["-l"].to_vec()).is_some());