command-macro

Simple Rust macro for building std::process::Command objects. Uses macro_rules! and works on stable.

```

[macro_use]

extern crate command_macro;

use command_macro::ExecuteCommand; // .execute() trait use std::process::Command;

command!( cd: "path/location", env: RUSTLOG="full", env: RUSTBACKTRACE=1, "cargo run {releaseflag} --bin {binname} -- {args}", releaseflag=Some("--release"), binname="binary", args=vec!["arg1", "arg2"], ).execute(); // Run and exit out if error code != 0 ```

License

MIT or Apache-2.0, at your option.