cmd_lib 1.9.4

Common rust commandline macros and utils, to write shell script like tasks easily
Documentation
1
2
3
4
5
6
7
use cmd_lib::*;

#[cmd_lib::main]
fn main() -> CmdResult {
    let opt: String = "".into();
    run_cmd!(ls $opt)
}