summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
AgeCommit message (Expand)Author
2020-09-26Shell: Add a (very basic) formatterAnotherTest
2020-09-19Shell: Make a new session at start if there's no active sessionAnotherTest
2020-09-14Shell: Add support for $0,$1,...AnotherTest
2020-09-09Shell: Fix event loop processing and backgrounding in subshellsAnotherTest
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-18LibLine: Read configuration from a config fileAnotherTest
2020-08-15Shell: Allow redirections and pipes on builtinsAnotherTest
2020-08-09Shell: Stop a for loop upon receiving two consecutive interruptionsAnotherTest
2020-08-06LibLine+Shell: Remove unused split_mechanismNico Weber
2020-08-06Shell: Store jobs as NonnullRefPtr<Job>Andreas Kling
2020-08-06Shell: Mark suspended children as such when receiving a SIGCHLDAnotherTest
2020-08-04Shell: Give the TTY to the foreground processAnotherTest
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest
2020-08-04Shell: Add support for ARGV (and $*, $#)AnotherTest
2020-07-30Shell: Do not assume that wstatus is valid after wait() returns 0AnotherTest
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-09Shell: Pledge sigactionTom
2020-07-09Shell: Handle signals asynchronouslyTom
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 absence of an init script as an errorAnotherTest
2020-07-05Shell: Build as part of Lagom as wellAnotherTest
2020-07-05Shell: Read and evaluate an init file on startAnotherTest
2020-07-05Shell: Use ArgsParser for argument parsingAnotherTest
2020-07-05Shell: Switch to a new parser and ASTAnotherTest
2020-06-01LibLine: Handle interrupts againAnotherTest
2020-05-27Shell: Avoid messing with sigaction while waiting for a childAnotherTest
2020-05-27LibLine: Use Core::EventLoop for outer read loopAnotherTest
2020-05-26Userland et al: Pledge sigaction when neededSergey Bugaev
2020-05-25Shell: Refuse to be suspended with ^ZAnotherTest
2020-05-20LibLine: Unify completion hooks and adapt its usersAnotherTest
2020-05-17Shell: Switch to using Core::EventLoopAnotherTest
2020-05-17Shell: Patch most of the builtins to use Core::ArgsParserAnotherTest
2020-05-17Shell: Add job control capabilitiesAnotherTest
2020-05-16Shell: Properly handle parser syntax errorsLinus Groh
2020-05-16Shell: Use DirIterator::SkipParentAndBaseDirShannon Booth
2020-05-15Shell: Correct program stop behaviourAnotherTest
2020-05-15Shell: Print correct errno when execvp() failsSergey Bugaev
2020-05-13Shell: Break out of continuation when ^C is pressedAnotherTest
2020-05-10Shell: Hyperlink output from "pwd" and "dirs" built-ins :^)Andreas Kling
2020-05-10Shell: Support basic syntax highlightingAnotherTest
2020-05-10Shell: Parse commentsAnotherTest
2020-05-10Shell: Include some metadata in parsed tokens and ask for continuationAnotherTest
2020-05-04Shell: Check for invalid #! in commandsAndrew Kaster
2020-04-30Shell: Provide the correct invariant length to the line editorAnotherTest
2020-04-30Shell+LibLine: Handle escaped characters correctlyAnotherTest
2020-04-27Shell: use access() syscall to check if files are executable by userStephan Unverwerth