command-run

crates.io Documentation

Rust library for running a command in a subprocess.

This library is a thin wrapper around the [std::process::Command] type with a few additional convenient features:

Dependencies and features

Example

rust // This will return an error if the command did not exit successfully // (controlled with the `check` field). let output = Command::with_args("echo", &["hello", "world"]) .enable_capture() .run()?; assert_eq!(output.stdout_string_lossy(), "hello world\n");