cmd-utils 0.3.1

rust Command utility traits, pipe commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate cmd_utils;

use std::process::Command;
use cmd_utils::CmdRun;

fn main() {
    Command::new("test")
        .args(["-n", "a"])
        .run()
        .unwrap();
}