commandspec

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

toml [dependencies] commandspec = "0.3.0"

Then:

```rust

[macro_use]

extern crate commandspec;

use commandspec::CommandSpec; // .execute() method on Command use std::process::Command;

execute!( r" cd path/location export RUSTLOG=full export RUSTBACKTRACE=1 cargo run {releaseflag} --bin {binname} -- {args} ", releaseflag=Some("--release"), binname="binary", args=vec!["arg1", "arg2"], )?; // () on success (error code 0), CommandError for all else ```

Format of the commandspec input, in order:

Features:

License

MIT or Apache-2.0, at your option.