index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Shell
/
Builtin.cpp
Age
Commit message (
Expand
)
Author
2021-01-03
Shell: Implement a 'source' builtin
AnotherTest
2021-01-03
Shell: Show a snippet of what caused the error (if possible)
AnotherTest
2020-12-30
Shell: Implement a very basic exec builtin
William Marlow
2020-12-29
Shell: Add a 'glob' builtin
AnotherTest
2020-12-10
Shell: Restore the terminal PGID before printing out job status on exit
AnotherTest
2020-12-08
Shell: Avoid recreating the event loop before exec()
AnotherTest
2020-10-29
Shell: Rename {source,dest}_fd to {old,new}_fd
AnotherTest
2020-10-29
Shell: Only prompt the user for a second 'exit' when in interactive mode
AnotherTest
2020-10-29
Shell: Add the `wait' builtin
AnotherTest
2020-10-26
Shell: Fix `cd' history (and `cdh')
AnotherTest
2020-10-26
Shell: Use kill() in fg/bg if killpg() fails
AnotherTest
2020-10-26
Shell+LibLine: Move Shell::{load,save}_history() to Line::Editor
Linus Groh
2020-10-04
Shell: Move everything to the Shell namespace
AnotherTest
2020-09-30
Shell: Make 'editor' a member of Shell, and provide a LibShell
AnotherTest
2020-08-15
Shell: Allow redirections and pipes on builtins
AnotherTest
2020-08-12
Shell: Do not assume that the job has exited after unblock in fg
AnotherTest
2020-08-12
Shell: Eliminate possible use-after-free in builtin_fg()
AnotherTest
2020-08-07
Shell: Store ListValue's values in a NonnullRefPtrVector<Value>
Andreas Kling
2020-08-06
Shell: Make "fg" set the TTY PGID before SIGCONT'ing the job
Andreas Kling
2020-08-06
Shell: Move printing job status into a Job::print_status() helper
Andreas Kling
2020-08-06
Shell: Make run_command() return a NonnullRefPtrVector<Job>
Andreas Kling
2020-08-05
Shell: Do not assume that stdin/stdout is a TTY
AnotherTest
2020-08-04
Shell: Correct FdRedirection inheriting from two RefCounted bases
AnotherTest
2020-08-04
Shell: Add support for ARGV (and $*, $#)
AnotherTest
2020-08-04
Shell: factor out updating the path cache into a function.
Mathieu PATUREL
2020-08-04
Shell: update cached_path when adding aliases
Mathieu PATUREL
2020-07-15
Shell: Explicitly declare 'environ' to make the macOS Lagom build happy
AnotherTest
2020-07-13
Shell: Avoid waiting for jobs that were *just* unblocked
AnotherTest
2020-07-13
Shell: Put children in their own process groups and fix job control
AnotherTest
2020-07-13
Shell: Resolve aliases in builtin_time
AnotherTest
2020-07-05
Shell: Initial support for 'option' completions
AnotherTest
2020-07-05
Shell: Add a 'setopt' builtin
AnotherTest
2020-07-05
Shell: Build as part of Lagom as well
AnotherTest
2020-07-05
Shell: Do not try to recreate a command from a list of args in time
AnotherTest
2020-07-05
Shell: Add the alias builtin and resolve aliases
AnotherTest
2020-07-05
Shell: Switch to a new parser and AST
AnotherTest