summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
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
2020-08-10Shell: Fix fd leak with pipesNico Weber
2020-08-10Shell: Cancel a running for loop upon receiving any non-SIGINT signalAnotherTest
2020-08-09Shell: Make redirections without commands apply to all future commandsAnotherTest
2020-08-09Shell: Stop a for loop upon receiving two consecutive interruptionsAnotherTest
2020-08-07Shell: Make Command::redirections a NonnullRefPtrVectorAndreas Kling
2020-08-07Shell: Make VariableDeclarations::Variable store NonnullRefPtrsAndreas Kling
2020-08-07Shell: Make resolve_without_cast() return NonnullRefPtr<Value>Andreas Kling
2020-08-07Shell: Store ListValue's values in a NonnullRefPtrVector<Value>Andreas Kling
2020-08-07Shell: Add some obvious move() calls in AST constructorsAndreas Kling
2020-08-06LibLine+Shell: Remove unused split_mechanismNico Weber
2020-08-06Shell: Make "fg" set the TTY PGID before SIGCONT'ing the jobAndreas Kling
2020-08-06Shell: Print job status after suspending a commandAndreas Kling
2020-08-06Shell: Move printing job status into a Job::print_status() helperAndreas Kling
2020-08-06Shell: Remove unnecessary ignore() in Shell::custom_event()Andreas Kling
2020-08-06Shell: Store jobs as NonnullRefPtr<Job>Andreas Kling
2020-08-06Shell: Make Job constructors private and use a create() helperAndreas Kling
2020-08-06Shell: Make run_command() return a NonnullRefPtrVector<Job>Andreas Kling
2020-08-06Shell: Mark suspended children as such when receiving a SIGCHLDAnotherTest
2020-08-05Shell: Do not assume that stdin/stdout is a TTYAnotherTest
2020-08-04Shell: Give the TTY to the foreground processAnotherTest
2020-08-04Shell: Use NonnullRefPtr to simplify some things in the parser/ASTAndreas Kling
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest