Simple Rust macro for building std::process::Command
objects. Uses macro_rules! and works on stable.
toml
[dependencies]
commandspec = "0.3.0"
Then:
```rust
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:
cd <path>
to set the current working directory of the command, where path can be a literal, a quoted string, or format variable.export <name>=<value>
lines to set environment variables, with the same formatting options.MIT or Apache-2.0, at your option.