Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-16 | LibC/Shell: Add unsetenv(), and unset builtin calling it in Shell. | Robin Burchell | |
2019-05-16 | LibC: Change putenv (and getenv) to not copy, but directly return the ↵ | Robin Burchell | |
environ values. This is in keeping with how putenv should function. It does mean that the shell's export command now leaks, but that's not a difficult fix. Contributes to #29. | |||
2019-05-15 | Kernel: Add a beep() syscall that beeps the PC speaker. | Andreas Kling | |
Hook this up in Terminal so that the '\a' character generates a beep. Finally emit an '\a' character in the shell line editing code when backspacing at the start of the line. | |||
2019-05-13 | Fix "make clean" not deleting app binaries. | Andreas Kling | |
2019-05-13 | LibC+Shell: Make system() actually work. | Andreas Kling | |
system() will now fork off a child process and execute the command via /bin/sh -c. There are probably some things to fix here, but it's a start. | |||
2019-05-10 | Shell: Add "umask" builtin for reading/writing the shell's umask. | Andreas Kling | |
2019-05-07 | Shell: Make ^W and ^U work when cursor is not at the end of the line. | Andreas Kling | |
2019-05-07 | Shell: Support home/end keys for line editing. | Andreas Kling | |
2019-05-07 | Shell: Support basic line editing with left/right arrow keys. | Andreas Kling | |
2019-05-07 | Shell: Ignore tab key for now. | Andreas Kling | |
2019-05-07 | Shell: Allow browsing history with up/down arrow keys. | Andreas Kling | |
2019-05-07 | Shell: Add "history" command that shows command history. | Andreas Kling | |
2019-05-07 | Shell: Move line editing to a separate class. | Andreas Kling | |
To be clear, there isn't really any line editing yet. But there is going to be, so let's have it in its own class. | |||
2019-05-07 | Shell: Move the Shell to a separate directory and let's call it "Shell" :^) | Andreas Kling | |