1 unstable release

0.0.1 Jul 8, 2023

#21 in #osdev

Download history 9/week @ 2024-11-15 7/week @ 2024-11-22 37/week @ 2024-11-29 48/week @ 2024-12-06 73/week @ 2024-12-13 59/week @ 2024-12-20 154/week @ 2024-12-27 111/week @ 2025-01-03 51/week @ 2025-01-10 44/week @ 2025-01-17 14/week @ 2025-01-24 61/week @ 2025-01-31 26/week @ 2025-02-07 66/week @ 2025-02-14 104/week @ 2025-02-21 35/week @ 2025-02-28

249 downloads per month

MIT/Apache

10KB
249 lines

simple-shell

A simple shell for no_std Rust.

Usage

fn run_shell() -> ! {
  let (print, read) = (|s: &str| print!(s), || None);
  let mut shell = Shell::new(print, read);

  commands.insert(
      "help",
      ShellCommand {
          help: "print this help message",
          func: |_, shell| {
              shell.print_help_screen();
              Ok(())
          },
          aliases: &["?", "h"],
      },
  );

  // Also supports async
  // shell.run_async().await;

  shell.run()
}

No runtime deps