rovkit 0.0.6

rust kit for my self
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test)]
mod tests {
    use rovkit::processkit;
    use std::io::BufRead;

    #[test]
    fn test01() {
        processkit::call("cd src && ls -alh")
            .unwrap()
            .stdout
            .lines()
            .for_each(|line| println!("{}", line.unwrap()));
    }
}