summaryrefslogtreecommitdiff
path: root/Shell/Shell.cpp
AgeCommit message (Expand)Author
2020-10-04Shell+LibLine: Record the input offset of completionsAnotherTest
2020-10-04Shell: Move everything to the Shell namespaceAnotherTest
2020-10-04AK: Don't add newline for outf/dbgf/warnf.asynts
2020-10-01Shell: Assert that the same pid is not given to waitpid()AnotherTest
2020-10-01Shell: Wait for *any* child to change state when receiving a SIGCHLDAnotherTest
2020-09-30Shell: Make 'editor' a member of Shell, and provide a LibShellAnotherTest
2020-09-28Shell: Don't execute scripts interactively.asynts
2020-09-26Shell: Fix use-after-move in alias resolutionAnotherTest
2020-09-26Shell: Add a (very basic) formatterAnotherTest
2020-09-26Shell: Use NonnullRefPtr to store non-null subnodesAnotherTest
2020-09-19Shell: Fix Vector OOB access in `add_entry_to_cache()'AnotherTest
2020-09-19Shell: Make a new session at start if there's no active sessionAnotherTest
2020-09-19Shell: Do not strip glob base path when it was explicitly requestedAnotherTest
2020-09-14Shell: Allow builtins and functions as conditions for 'if'AnotherTest
2020-09-14Shell: Add support for functionsAnotherTest
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: 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-08-25Misc: Remove some unneeded includes of Timer.h and ElapsedTimer.h (#3286)Nico Weber
2020-08-19Shell: Do not attempt to yank the TTY from background processesAnotherTest
2020-08-19Shell: Fix outdated debug log codeAnotherTest
2020-08-18Shell: Respect the 'PROMPT_EOL_MARK' environment variableAnotherTest
2020-08-17Shell: Ensure that the cursor starts on a new lineAnotherTest
2020-08-15Shell: Allow redirections and pipes on builtinsAnotherTest
2020-08-12Shell: Wait for the parent to deal with the PGID stuff before execvp()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-09Shell: Make redirections without commands apply to all future commandsAnotherTest
2020-08-07Shell: Make Command::redirections a NonnullRefPtrVectorAndreas Kling
2020-08-06Shell: Print job status after suspending a commandAndreas Kling
2020-08-06Shell: Remove unnecessary ignore() in Shell::custom_event()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-05Shell: Do not assume that stdin/stdout is a TTYAnotherTest
2020-08-04Shell: Give the TTY to the foreground processAnotherTest
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest
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-08-04Shell: highlight runnable commandsMathieu PATUREL
2020-07-26Refactor: Change the AK::binary_search signature to use AK::Span.asynts
2020-07-16Shell: Add a 'for' loopAnotherTest
2020-07-16Shell: Parse lists serially, and flatten them only when neededAnotherTest
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