pub fn execute_command(executable: &OsStr, args: &[&OsStr]) -> CommandResultExpand description
execute_command
ⓘ
use doe::execute_command;
let result = execute_command("nasm".as_ref(), &["-version".as_ref()]);
println!("{:?}",result);