[][src]Crate reef

This crate provides a library for executing system commands.

Usage

This crate is on crates.io and can be used by adding reef to your dependencies in your project's Cargo.toml.

[dependencies]
reef = "0"

If you're using Rust 2015, then you'll also need to add it to your crate root:

extern crate reef;

Example: execute a command that is in the system PATH

note: git must be available in the system PATH for this example to work.

use reef::Command;
let git_version = Command::new("git --version",&std::env::temp_dir()).exec().unwrap();
assert!(git_version.stdout.contains("git version"));

Modules

duration
errors
logger

Structs

Command

Metadata about a std::process::Command

Env

Metadata about the environment

History
Settings

Enums

Status