Macro cradle::run[][src]

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

Executes a child process without capturing any output.

use cradle::prelude::*;

run!(%"touch ./foo");

If an error occurs, run! will panic. See crate::error::Error for possible errors.

For capturing output from child processes, see crate::run_output!.