macro_rules! exec_command {
    (raw, $cmd:literal) => { ... };
    (raw, $cmd:expr, $args:expr) => { ... };
    (raw, $input:expr) => { ... };
    (pipe, $cmd:expr, $args:expr) => { ... };
    (inherit, $cmd:expr, $args:expr) => { ... };
    ($cmd:expr, [ $($arg:literal),* ]) => { ... };
    ($input:expr) => { ... };
}
Expand description

Calls the exec_command host function to execute a command on the host as a synchronous child process.