Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Capture SIGINT | Rory Dudley | 2024-02-16 | 1 | -0/+12 |
| | | | | | | 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. | ||||
* | Detect EOF | Rory Dudley | 2024-02-16 | 1 | -1/+8 |
| | | | | Added logic to detect for an EOF (i.e. <C-d>). | ||||
* | Initial commit | Rory Dudley | 2024-02-16 | 1 | -0/+86 |
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. |