lateral 0.3.1

A simple process parallelizer to make lives better at the commandline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate lateral;
#[macro_use]
extern crate log;
extern crate pretty_env_logger;

fn main() {
    pretty_env_logger::init();
    let opts = lateral::Opts::from_args();
    debug!("{:#?}", opts);
    if let Err(e) = lateral::execute(&opts) {
        if e.show_msg {
            eprintln!("Error: {}", e);
        }
        std::process::exit(e.exit_code);
    }
}