//! This module defines a convenient API for shelling out to commands,
//! handling stderr when they fail.
use Command;
/// Execute the CLI command specified.
///
/// # Failures
///
/// If the command isn't on $PATH, returns Err with a helpful
/// message. If the command returns a non-zero exit code, returns Err
/// with stderr.