#shell #command #user #executing #interface #ansi-term #command-error

simpleshell

一个提供用户执行命令简单界面的crate

1个不稳定版本

0.1.0 2022年1月20日

30#executing

MIT 许可协议

8KB
86

Crate SimpleShell

一个提供用户执行命令简单界面的crate。

use simple_shell::{Shell, Command, CommandError};
use ansi_term::{Color, Style};

fn version(_: &[String], _: &[Command]) -> Result<(), CommandError> {
    println!("v0.1.0");
    Ok(())
}

fn help(_: &[String], commands: &[Command]) -> Result<(), CommandError> {
    println!("{}", Color::Blue.paint("HELP"));
    commands.iter().for_each(|c| println!("{}: {}", Style::new().bold().paint(&c.name), c.description));
    Ok(())
}

let commands = vec![
    Command {
        name: "version".to_owned(),
        description: "Returns the version of the software".to_owned(),
        exec: Box::new(version),
    },
    Command {
        name: "help".to_owned(),
        description: "Prints out this help".to_owned(),
        exec: Box::new(help),
    },
];

let shell = Shell::new(None, commands);
loop {
    if let Err(e) = shell.process(){
        eprintln!("{}", e);
    }
}

结果为

$ shell> version
v0.1.0

无运行时依赖