Allow running external commands.
```rust use easy_process;
// stdout let output = easyprocess::run(r#"sh -c 'echo "1 2 3 4"'"#)?; asserteq!(&output.stdout, "1 2 3 4\n");
// stderr let output = easyprocess::run(r#"sh -c 'echo "1 2 3 4" >&2'"#)?; asserteq!(&output.stderr, "1 2 3 4\n"); ```
Licensed under either of
at your option.
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.