shrs 0.0.4

modular library to build your own shell in rust
Documentation
1
2
3
4
5
6
7
8
9
//! The most minimal working shell

use shrs::prelude::*;

fn main() {
    let myshell = ShellBuilder::default().build().unwrap();

    myshell.run();
}