usecommand_run::{Command, Error};#[test]fntest_example()->Result<(), Error>{// Begin readme example
// 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");// End readme example
Ok(())}