pretty-exec 0.5.0

Print a command and then execute it
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let status = match pretty_exec::main() {
        Ok(status) => status,
        Err(error) => {
            eprintln!("ERROR: {}", error);
            1
        }
    };

    std::process::exit(status);
}