summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
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
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-08-04Shell: highlight runnable commandsMathieu PATUREL
2020-07-30Shell: Tweak tests to use 'echo -n' when newlines are significantAnotherTest
2020-07-30Shell: Add tests for '&&' and '||' parsing and evaluationAnotherTest
2020-07-30Shell: Fix parse mistake in '&&' not being recursiveAnotherTest
2020-07-30Shell: Do not assume that wstatus is valid after wait() returns 0AnotherTest
2020-07-27Shell: Ignore leading semicolonsAnotherTest
2020-07-26Refactor: Change the AK::binary_search signature to use AK::Span.asynts
2020-07-25Shell: Don't crash when autocompleting a non-bare wordBen Wiederhake
2020-07-17Shell: Mark ForLoop as would_executeAnotherTest
2020-07-16Shell: Add a test for loopsAnotherTest
2020-07-16Shell: Add a 'for' loopAnotherTest
2020-07-16Shell: Parse lists serially, and flatten them only when neededAnotherTest
2020-07-16Shell: Remove '[' and ']' as special shell charactersPeter Elliott
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-13Shell: Move out run_commands and expand_aliases to be Shell member fnsAnotherTest
2020-07-12Shell: Recursively resolve aliasesAnotherTest
2020-07-09Shell: Pledge sigactionTom
2020-07-09Shell: Handle signals asynchronouslyTom
2020-07-07Shell: Suggest aliases when completing program names :^)AnotherTest
2020-07-07Shell: Skip creating a Join node when nothing was parsedAnotherTest
2020-07-07Shell: Run both /etc/shellrc and ~/.shellrc on startupAndreas Kling
2020-07-06Shell: Keep the TTY on the same pgroup to get tty signalsAnotherTest
2020-07-06Shell: Handle the case where the child we're waiting for doesn't existAnotherTest
2020-07-06Shell: Do not treat the ending newline as part of a commentAnotherTest
2020-07-06Shell: Do not treat the absence of an init script as an errorAnotherTest
2020-07-05Shell: Do not remove more than 2 dashes from the option being completedAnotherTest
2020-07-05Shell: Add some testsAnotherTest
2020-07-05Shell: Initial support for 'option' completionsAnotherTest
2020-07-05Shell: Add a 'setopt' builtinAnotherTest
2020-07-05Shell: Show descriptions about syntax errorsAnotherTest
2020-07-05Shell: Allow a command sequence to be delimited by newlinesAnotherTest
2020-07-05Shell: Build as part of Lagom as wellAnotherTest
2020-07-05Shell: Mark And and Or nodes as execute nodesAnotherTest
2020-07-05Shell: Provide completions to Tilde and its Juxtaposition.AnotherTest
2020-07-05Shell: Allow commands in variables, and properly substitute them on useAnotherTest
2020-07-05Shell: Parse a pipe sequence inside $(...)AnotherTest
2020-07-05Shell: Expand Juxtaposition of lists to list productsAnotherTest
2020-07-05Shell: Do not try to recreate a command from a list of args in timeAnotherTest
2020-07-05Shell: Read and evaluate an init file on startAnotherTest
2020-07-05Shell: Use ArgsParser for argument parsingAnotherTest