summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Support for inotifyinotifyRory Dudley2024-02-191-0/+2
| | | | | This is a branch with some cursory support for using inotify to watch for changes in the user's $PATH.
* Capture SIGINTRory Dudley2024-02-161-0/+1
| | | | | | Added logic to capture the interrupt signal. Using a rust crate called 'ctrlc' to do the heavy lifting. Program will simply reprint the prompt on a new line if the interrup signal is detected.
* Initial commitRory Dudley2024-02-161-0/+14
An extremely miniamal shell. It is capable of forking processes, and passing arguments to them, but that's pretty much it. Notes: This is pretty much a prototype, to see how easily something like a shell could be implemented in Rust.