https://github.com/micahkepe/minishell
A tiny shell written in Rust
https://github.com/micahkepe/minishell
rust rust-lang shell
Last synced: 9 months ago
JSON representation
A tiny shell written in Rust
- Host: GitHub
- URL: https://github.com/micahkepe/minishell
- Owner: micahkepe
- Created: 2025-05-02T23:03:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-19T18:42:52.000Z (about 1 year ago)
- Last Synced: 2025-10-04T00:48:09.270Z (9 months ago)
- Topics: rust, rust-lang, shell
- Language: Rust
- Homepage: https://micahkepe.com/blog/minishell/
- Size: 7.81 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minishell 🐚
A toy tiny shell implemented in Rust with a simple event loop with piping
support.
The shell can be expanded with the features expected of a modern shell:
- [Basic Shell Features](https://www.gnu.org/software/bash/manual/html_node/Basic-Shell-Features.html#Basic-Shell-Features)
- [Input/Output Redirection in the Shell](https://thoughtbot.com/blog/input-output-redirection-in-the-shell)
- [Syntax Highlighting](https://zackoverflow.dev/writing/implementing-syntax-highlighting)
- Vi bindings
- and more...