summaryrefslogtreecommitdiff
path: root/Shell/Builtin.cpp
AgeCommit message (Expand)Author
2021-01-03Shell: Implement a 'source' builtinAnotherTest
2021-01-03Shell: Show a snippet of what caused the error (if possible)AnotherTest
2020-12-30Shell: Implement a very basic exec builtinWilliam Marlow
2020-12-29Shell: Add a 'glob' builtinAnotherTest
2020-12-10Shell: Restore the terminal PGID before printing out job status on exitAnotherTest
2020-12-08Shell: Avoid recreating the event loop before exec()AnotherTest
2020-10-29Shell: Rename {source,dest}_fd to {old,new}_fdAnotherTest
2020-10-29Shell: Only prompt the user for a second 'exit' when in interactive modeAnotherTest
2020-10-29Shell: Add the `wait' builtinAnotherTest
2020-10-26Shell: Fix `cd' history (and `cdh')AnotherTest
2020-10-26Shell: Use kill() in fg/bg if killpg() failsAnotherTest
2020-10-26Shell+LibLine: Move Shell::{load,save}_history() to Line::EditorLinus Groh
2020-10-04Shell: Move everything to the Shell namespaceAnotherTest
2020-09-30Shell: Make 'editor' a member of Shell, and provide a LibShellAnotherTest
2020-08-15Shell: Allow redirections and pipes on builtinsAnotherTest
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-07Shell: Store ListValue's values in a NonnullRefPtrVector<Value>Andreas Kling
2020-08-06Shell: Make "fg" set the TTY PGID before SIGCONT'ing the jobAndreas Kling
2020-08-06Shell: Move printing job status into a Job::print_status() helperAndreas Kling
2020-08-06Shell: Make run_command() return a NonnullRefPtrVector<Job>Andreas Kling
2020-08-05Shell: Do not assume that stdin/stdout is a TTYAnotherTest
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest
2020-08-04Shell: Add support for ARGV (and $*, $#)AnotherTest
2020-08-04Shell: factor out updating the path cache into a function.Mathieu PATUREL
2020-08-04Shell: update cached_path when adding aliasesMathieu PATUREL
2020-07-15Shell: Explicitly declare 'environ' to make the macOS Lagom build happyAnotherTest
2020-07-13Shell: Avoid waiting for jobs that were *just* unblockedAnotherTest
2020-07-13Shell: Put children in their own process groups and fix job controlAnotherTest
2020-07-13Shell: Resolve aliases in builtin_timeAnotherTest
2020-07-05Shell: Initial support for 'option' completionsAnotherTest
2020-07-05Shell: Add a 'setopt' builtinAnotherTest
2020-07-05Shell: Build as part of Lagom as wellAnotherTest
2020-07-05Shell: Do not try to recreate a command from a list of args in timeAnotherTest
2020-07-05Shell: Add the alias builtin and resolve aliasesAnotherTest
2020-07-05Shell: Switch to a new parser and ASTAnotherTest