macro_rules! args { ($app:tt $($q:tt)*) => { ... }; }
Create an iterator to add args to an existing Command
let mut x = Command::new("echo"); x.args(args!(some text here));