exrs 1.2.0

exrs is a command executor wrapping `std::process::Command`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! #exrs
//! exrs is a command executor library by using `std::process::Command`.
//! exrsは`std::process::Command`を使用したコマンド実行用ライブラリです。
//!This is for executing command from rust code eazily than `std::process::Command` and get result.
//!ちょっと楽にコマンドをrustコードから実行し、結果を取得するためのものです。
//!
//! #features
//! - `cmd` - execute command from rust code eazily than `std::process::Command` and get result.
//! - `shell` - execute shell command from rust code eazily than `std::process::Command` and get result.
//!
//! for more information: see README.md

#[cfg(feature = "cmd")]
pub mod cmd;
#[cfg(feature = "shell")]
pub mod shell;

pub mod macros;