#command #builder #rub #buildable #suitable #extension #execute

commandext

A Command extension suitable for use in Rust Builders

8 releases

Uses old Rust 2015

0.1.0 Jan 23, 2016
0.0.7 Dec 28, 2015
0.0.6 Mar 30, 2015
0.0.4 Feb 4, 2015
0.0.3 Jan 25, 2015

#1 in #rub

Download history 25/week @ 2023-12-03 15/week @ 2023-12-10 28/week @ 2023-12-17 28/week @ 2023-12-24 3/week @ 2023-12-31 28/week @ 2024-01-07 19/week @ 2024-01-14 13/week @ 2024-01-21 12/week @ 2024-01-28 19/week @ 2024-02-04 31/week @ 2024-02-11 39/week @ 2024-02-18 51/week @ 2024-02-25 38/week @ 2024-03-03 55/week @ 2024-03-10 65/week @ 2024-03-17

210 downloads per month
Used in 13 crates (10 directly)

MIT/Apache

13KB
222 lines

commandext

A Command extension suitable for use by Rust Builders.

Version

Crates.io Build Status

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Defines the CommandExt type.

CommandExt wraps Command and enhances it.

A CommandExt is built similar to a Command. Supply the command name, add args, set enviroment variables, etc. The exec function takes a closure that executes the command and returns the given result T.

Examples

use commandext::{CommandExt,to_procout};

let mut cmd = CommandExt::new("echo");
cmd.env("DEBUG", "true");
cmd.arg("test");

let output = cmd.exec(to_procout());
// Execute "echo 'Testing Spawn'" via spawn and verify the exit code was 0.
// As a side effect, you would see 'Testing Spawn' on stdout.
use commandext::{CommandExt,to_res};

let res = CommandExt::new("echo").arg("Testing Spawn").exec(to_res());

assert_eq!(Ok(0), res);
// Exeute "echo test" via output and verify the output is indeed "test\n".
// In this case there is nothing on stdout.  The output is consumed here.
extern crate sodium_sys;
extern crate commandext;

use commandext::{CommandExt,to_procout};
use sodium_sys::crypto::utils::secmem;

fn main() {
    let cmd = CommandExt::new("echo").arg("test").exec(to_procout());
    let output = cmd.unwrap();

    assert_eq!(secmem::memcmp(&[116, 101, 115, 116, 10], &output.stdout[..]), 0);
}

Dependencies

~40KB