1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00
serenity/Shell
AnotherTest 6e6be8e56e Shell: Ignore '\\\n' in input
This allows the user to break a line:
```sh
$ echo \
   foo
```
is the same as
```sh
$ echo    foo
```
2020-09-26 21:28:35 +02:00
..
Tests Shell: Add some tests for 'match' 2020-09-15 20:36:59 +02:00
AST.cpp Shell: Rename two 'fd' class members to have an 'm_' prefix 2020-09-26 21:28:35 +02:00
AST.h Shell: Rename two 'fd' class members to have an 'm_' prefix 2020-09-26 21:28:35 +02:00
Builtin.cpp Shell: Allow redirections and pipes on builtins 2020-08-15 20:48:17 +02:00
CMakeLists.txt Shell: Move printing job status into a Job::print_status() helper 2020-08-06 15:09:49 +02:00
Execution.h Shell: Allow redirections and pipes on builtins 2020-08-15 20:48:17 +02:00
Forward.h Shell: Fix job control and backgrounding 2020-09-09 20:35:21 +02:00
Job.cpp Shell: Fix job control and backgrounding 2020-09-09 20:35:21 +02:00
Job.h Shell: Fix job control and backgrounding 2020-09-09 20:35:21 +02:00
main.cpp Shell: Make a new session at start if there's no active session 2020-09-19 00:38:41 +02:00
Parser.cpp Shell: Ignore '\\\n' in input 2020-09-26 21:28:35 +02:00
Parser.h Shell: Add 'match' expressions 2020-09-15 20:36:59 +02:00
Shell.cpp Shell: Use NonnullRefPtr to store non-null subnodes 2020-09-26 21:28:35 +02:00
Shell.h LibCore: Make Core::Object properties more dynamic 2020-09-15 21:46:26 +02:00