summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/export.rs
Commit message (Collapse)AuthorAgeFilesLines
* Sort output of 'export' and 'alias'Rory Dudley2024-04-111-1/+3
| | | | | Sort the output of the built-in 'export' and 'alias' commands, in cases where all environment variables/aliases are printed out.
* Add docstring comments to all the anthology functionsRory Dudley2024-03-311-0/+23
| | | | | | Add docstring comments for all the incant function throughout the anthology, documenting what each function does, and an example of it's shell command.
* Add the 'unset' built-in commandRory Dudley2024-03-301-0/+15
| | | | | Add the 'unset' command to remove global environment variable definitions from the shell.
* The anthology moduleRory Dudley2024-03-281-0/+23
The anthology module was added to run built-in commands. The 'cd' and 'exit' built-ins were moved from the main recite() loop to this module. Additionally, the 'export' and 'source' built-ins were added.