Merge pull request #582 from nzdjb/nzdjb-patch-1

feat: Command injection with newlines
This commit is contained in:
Swissky 2022-10-22 10:20:42 +02:00 committed by GitHub
commit a33e4006f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,6 +55,13 @@ original_cmd_by_server | ls
original_cmd_by_server || ls # Only if the first cmd fail
```
Commands can also be run in sequence with newlines
```bash
original_cmd_by_server
ls
```
### Inside a command
```bash