jabba-lib 0.1.8

A utility library, inspired mainly by Python.
Documentation
1
2
3
4
5
6
use jabba_lib::jprocess as jproc;

fn main() {
    let cmd = "ls -al";
    jproc::exec_cmd(cmd);
}