args

Macro args 

Source
macro_rules! args {
    ($app:tt $($q:tt)*) => { ... };
}
Expand description

Create an iterator to add args to an existing Command

let mut x = Command::new("echo");
x.args(args!(some text here));