summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
2019-09-21LibCore: Convert CFile to ObjectPtrAndreas Kling
2019-09-16Shell: Add a "time" builtin to show how long a command took to runAndreas Kling
2019-09-15Shell: Tab completion for programs in PATHwillmcpherson2
2019-09-15Shell: Fixed `pushd` and `popd`Jesse Buhagiar
2019-09-15Shell: Added `pushd`, `popd` and `dirs` builtinsJesse Buhagiar
2019-09-14Shell: Support extremely naive shell script executionAndreas Kling
2019-09-14Shell: Add POSIX-compliant character escapingAaron Malpas
2019-09-13Shell: fix crash when using `cd -` and OLDPWD is nullTim Morgan
2019-09-13Shell: Remember previous working dirTim Morgan
2019-09-10Shell: Add support for special parameter that returns PIDMinusGix
2019-09-10Shell: Add support for special parameter that expands to return-code of last ...MinusGix
2019-09-10Shell: Add support for getting environment variable valuesMinusGix
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-04Shell: Okay I keep messing up this history file code.. actually fix it!Andreas Kling
2019-09-04Shell: Oops, don't exit() when ~/.history does not existAndreas Kling
2019-09-04Shell: Don't open ~/.history for writing on startupAndreas Kling
2019-09-02Shell: Added support for ctr-e/a.marprok
2019-09-01Shell: Support semicolons for separating commandsConrad Pankoff
2019-08-18Shell: Support forward deleteConrad Pankoff
2019-07-25Shell: Put failed command exit statuses in the debug output instead.Andreas Kling
2019-07-25Shell: Simply print "cmd: Command not found." for ENOENT on execution.Andreas Kling
2019-07-19Shell: Implement support for terminal clearing with ^L.Andreas Kling
2019-07-14Kernel: Add support for the WSTOPPED flag to the waitpid() syscall.Andreas Kling
2019-07-09Shell: Remove some unused code.Andreas Kling
2019-07-08Shell: Handle SIGWINCH to get a nice behavior when resizing.Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-06-30Meta: Removed all gitignore in the source tree only keeping the root oneVAN BOSSUYT Nicolas
2019-06-23add ~/.history file for Shell, stores entire command log and loads recent com...CallumAttryde
2019-06-14Shell: Implement more advanced globbing.Sergey Bugaev
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07Shell: Run clang-format on everything.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-06-06Shell: Print the name of each process whose exit status we're reporting.Andreas Kling
2019-06-06Shell: Check the exit status of all spawned child processes.Andreas Kling
2019-06-04Shell: Separate fd rewirings from redirections.Andreas Kling
2019-05-31Shell: Fix an error message incorrectly complaining about lstat() failure.Andreas Kling
2019-05-30LibC: Move wait-related stuff to <sys/wait.h>. #POSIXAndreas Kling
2019-05-30LibC: Add setenv().Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-28Shell: Allow * and ? wildcard expansion in argumentsRobin Burchell
2019-05-26Shell: A '>' redirection target should be truncated.Andreas Kling
2019-05-26Shell: When a command is terminated by a signal, print signal description.Andreas Kling
2019-05-26Shell: Add append operator (>>)Robin Burchell
2019-05-16LibC/Shell: Add unsetenv(), and unset builtin calling it in Shell.Robin Burchell
2019-05-16LibC: Change putenv (and getenv) to not copy, but directly return the environ...Robin Burchell
2019-05-15Kernel: Add a beep() syscall that beeps the PC speaker.Andreas Kling
2019-05-13Fix "make clean" not deleting app binaries.Andreas Kling
2019-05-13LibC+Shell: Make system() actually work.Andreas Kling
2019-05-10Shell: Add "umask" builtin for reading/writing the shell's umask.Andreas Kling
2019-05-07Shell: Make ^W and ^U work when cursor is not at the end of the line.Andreas Kling