printable-shell-command 0.2.4

A helper library to print shell commands.
Documentation
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();
}