Function conch_runtime::spawn::sequence[][src]

pub fn sequence<I, E: ?Sized>(iter: I) -> Sequence<I::IntoIter, E> where
    E: LastStatusEnvironment + ReportErrorEnvironment,
    I: IntoIterator,
    I::Item: Spawn<E>, 

Spawns any iterable collection of sequential items.

Commands are sequentially executed regardless of the exit status of previous commands. All non-fatal errors are reported and swallowed, however, "fatal" errors are bubbled up and the sequence terminated.