commandcrafter 0.4.2

This crate is used to execute shell commands using rust convenience
Documentation
1
2
3
4
5
6
7
use commandcrafter::execute::Execute;

fn main() {
    let l_flag = ["-la"];
    let l = Execute::run("ls", &l_flag);
    let _ = Execute::write_to_file(&l);
}