summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
2020-09-15LibCore: Make Core::Object properties more dynamicAndreas Kling
2020-09-15Shell: Add some tests for 'match'AnotherTest
2020-09-15Shell: Add 'match' expressionsAnotherTest
2020-09-15Shell: Make Parser::expect() revert the offset when matching failsAnotherTest
2020-09-15Shell: Make Node::resolve_as_list(nullptr) resolve to a 'pure' reprAnotherTest
2020-09-15AK: Remove OutputMemoryStream for DuplexMemoryStream.asynts
2020-09-14Shell: Allow builtins and functions as conditions for 'if'AnotherTest
2020-09-14Shell: Complete named function parameters inside the function bodyAnotherTest
2020-09-14Shell: Add some tests for functionsAnotherTest
2020-09-14Shell: Add support for functionsAnotherTest
2020-09-14Shell: Use a subshell instead of explicitly calling a shell binary in a testAnotherTest
2020-09-14Shell: Add support for $0,$1,...AnotherTest
2020-09-12Shell: Move the first command in a pipeline to the pipeline pgid tooAnotherTest
2020-09-10Shell: Do not reset the terminal attributes when command is run in bgAnotherTest
2020-09-09Shell: Add some tests for subshellsAnotherTest
2020-09-09Shell: Add the (now) free subshell supportAnotherTest
2020-09-09Shell: Add a test for control structures as commandsAnotherTest
2020-09-09Shell: Fix event loop processing and backgrounding in subshellsAnotherTest
2020-09-09Shell: Allow control structures to appear in pipe sequencesAnotherTest
2020-09-09Shell: Announce job events at the right timesAnotherTest
2020-09-09Shell: Fix job control and backgroundingAnotherTest
2020-09-01AK: Move memory streams into their own header.asynts
2020-08-25Misc: Remove some unneeded includes of Timer.h and ElapsedTimer.h (#3286)Nico Weber
2020-08-22Shell: Add tests for 'if'AnotherTest
2020-08-22Shell: Add 'if' expressionsAnotherTest
2020-08-22Shell: Actually process for loop entries as a streamAnotherTest
2020-08-22Shell: Do not flatten syntactic lists in for_each_entry()AnotherTest
2020-08-22Shell: Mark AST::Background as would_execute if its subnode doesAnotherTest
2020-08-21LibLine: Handle interrupts/window size changes internallyAnotherTest
2020-08-21LibLine: Handle Ctrl-C and Ctrl-D in a way similar to other line editorsAnotherTest
2020-08-21Shell: Make 'for' loops read their input as an streamAnotherTest
2020-08-19Shell: Do not attempt to yank the TTY from background processesAnotherTest
2020-08-19Shell: Name the pipe ends correctlyAnotherTest
2020-08-19Shell: Fix outdated debug log codeAnotherTest
2020-08-18Shell: Respect the 'PROMPT_EOL_MARK' environment variableAnotherTest
2020-08-18LibLine: Read configuration from a config fileAnotherTest
2020-08-17Shell: Ensure that the cursor starts on a new lineAnotherTest
2020-08-15Shell: Add some tests for builtin redirectionAnotherTest
2020-08-15Shell: Allow redirections and pipes on builtinsAnotherTest
2020-08-14Shell: Restore input offset when failing to parse a redirectionAnotherTest
2020-08-14Shell: Start writing a man pageAnotherTest
2020-08-13Shell: Add test for 37d5e3e0df6 / #3073Nico Weber
2020-08-12Shell: Add create() factory function for PathRedirectionAndreas Kling
2020-08-12Shell: Fix another FdRedirection reference leakAndreas Kling
2020-08-12Shell: Wait for the parent to deal with the PGID stuff before execvp()AnotherTest
2020-08-12Shell: Do not assume that the job has exited after unblock in fgAnotherTest
2020-08-12Shell: Eliminate possible use-after-free in builtin_fg()AnotherTest
2020-08-12Shell: Eliminate reference leak in AST::Execute::run()AnotherTest
2020-08-12Shell: Moves pipelined processes to one process groupAnotherTest
2020-08-12Shell: Show the job id instead of the pid when a job exits in backgroundAnotherTest