Starting point

This commit is contained in:
Justine Pelletreau
2022-12-06 17:59:26 +01:00
commit 2fa6237406
5 changed files with 110 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# RShell
Rust Shell. This is an attempt to create a simple shell in Rust, because why not.
My starting point is [this article](https://www.joshmcguigan.com/blog/build-your-own-shell-rust/) which is excellent. I will start with the final form of a shell given in the article and try to reformat it:
* Make it more easy to extend
* Make it a lib
I can also add basic features:
* History
* customizable prompt
* Colours ?
Later, I can even make something useful out of it. For example, I could make it so that it is configurable via a config file. I could make it the default terminal via ssh for some user and make it so the terminal opens directly in a docker container, or chrooted or smthing, as a basic form of honeypot.