1 2 3 4 5 6 7
use std::process::Command; use printable_shell_command::ShellPrintable; fn main() { let _ = Command::new("echo").args(["#hi"]).print_invocation(); }