command_macros::command!
[−]
[src]
macro_rules! command { ($($tt:tt)*) => { ... }; }
Full-featured macro for creating Command
Please read the syntax description in the crate's documentation.
Examples
#![feature(plugin)] #![plugin(command_macros)] fn main() { command!(echo ((2+2))=4).status().unwrap(); }