summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
AgeCommit message (Expand)Author
2020-03-31LibLine: Rename LineEditor.{cpp,h} => Editor.{cpp,h}Andreas Kling
2020-03-31LibLine: Rename LineEditor to Line::EditorAndreas Kling
2020-03-31LibLine: Rename from LibLineEditAndreas Kling
2020-03-31LibLineEdit + Shell: Handle Termios internally and give a copy if askedAnotherTest
2020-03-31LibLinEdit + Shell: handle signalsAnotherTest
2020-03-31Shell: Move LineEdit out and add it as a dependencyAnotherTest
2020-03-30Shell: Shorten $HOME to '~' in shell promptsAndreas Kling
2020-03-30Shell: Stop making shell history files world-readableAndreas Kling
2020-03-22Shell: More general tilde expansionShannon Booth
2020-03-22Shell: Use starts_with() in expand_parametersShannon Booth
2020-03-22Shell: Use size_t for SH_DEBUG vector iterationShannon Booth
2020-03-09Shell: Validate only one directory is given to cdShannon Booth
2020-03-09Shell: Implement a "cd history" (cdh) builtinShannon Booth
2020-03-07Shell: Fix silly stack overflow in 'cd' builtinAndreas Kling
2020-03-07Shell: Set up the PWD environment variable earlyAndreas Kling
2020-03-02AK: Move the wildcard-matching implementation to StringUtilshowar6hill
2020-02-25Shell: Don't pass nonsense options to waitpid()Andreas Kling
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-22Shell: Make some functions constShannon Booth
2020-02-22Shell: Add basic tilde expansionShannon Booth
2020-02-15Shell: Use SkipParentAndBaseDir flag in DirIteratorShannon Booth
2020-02-10Shell: Build prompt based on the PROMPT environment variable if presentAndreas Kling
2020-02-06LibCore: Remove leading C from filenamesAndreas Kling
2020-02-02LibCore: Put all classes in the Core namespace and remove the leading CAndreas Kling
2020-01-27Shell: If a command process is stopped, print the stop signal to stderrAndreas Kling
2020-01-25Shell: Don't start a new session in every new shellAndreas Kling
2020-01-21Shell: Disable SH_DEBUG by default and tidy up command timing loggingAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Shell: Fix broken debug logging about waiting on childrenAndreas Kling
2020-01-11Shell: Use pledge()Andreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-12-07Shell: Use _exit() in the forked child if execvp() failsAndreas Kling
2019-12-05Shell: Cache PATH for faster tab completionWilliam McPherson
2019-10-30Shell: Properly set and restore termios settings.Drew Stratford
2019-10-20Shell: Update termios settings to match line discipline.Drew Stratford
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
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: 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-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-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-01Shell: Support semicolons for separating commandsConrad Pankoff