rust shell
a basic shell in rust i did with codecrafters as it was in free access during the month of dec. 2024.
the project aims to implement a very basic POSIX compliant shell capable of:
- executing various basic built in commands:
echo
,exit
,type
,pwd
,cd
- running external programs using the
PATH
environment variable - handling quotes following the Bash Reference Manual