summaryrefslogtreecommitdiff
path: root/Userland/Shell/Builtin.cpp
AgeCommit message (Collapse)Author
2021-01-19Shell: Add a `not` builtinAnotherTest
`not` just takes a command, runs it, then negates its exit code (0->1, non-zero->0).
2021-01-19Shell: Add a builtin that parses its sole argument and dumps its ASTAnotherTest
Pretty useful for debugging.
2021-01-12Shell: Move to Userland/Shell/Andreas Kling