boxxy 0.14.0

Linkable sandbox explorer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::{App, Arg};

fn main() {
    env_logger::init();

    let matches = App::new("boxxy-ipc")
        .arg(Arg::with_name("path").required(true))
        .get_matches();

    let path = matches.value_of("path").unwrap();

    let toolbox = boxxy::Toolbox::new();
    let mut shell = boxxy::Shell::new(toolbox);

    shell.exec_once(&format!("ipcshell -- {}", path)); // TODO: need better interface
    shell.run()
}