pub fn run_cli(cmd_line: &str) -> Result<Output>
Expand description
run_cli - pass in a String of a normal command line
The function will split the options into words to supply to the low_level std::process::Command which returns Result<(Output)>
ยงExample
run_cli("ps aux");