Crate shrs

source ·
Expand description

shrs is a framework for building and configuring your own shell in rust.

§Example

The most basic shell can be created very easily:

use shrs::prelude::*;

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

    myshell.run().unwrap();
}

For more advanced explanation on features and configuration options, see the shrs book

Modules§

Macros§