diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-03-21 10:26:31 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-03-21 12:42:43 +0100 |
commit | 6d76fbd80a1d633c7b5583730e0a0247f365ae10 (patch) | |
tree | 3d58c330d2efd1026ee15d2caaf7f5a210689ee4 /tests/redirections.sh | |
parent | ed79e3d28b34e4826196529a6a7c04518c91b71f (diff) |
Add more tests using redirections, quoting and whitespaces
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'tests/redirections.sh')
-rw-r--r-- | tests/redirections.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/redirections.sh b/tests/redirections.sh new file mode 100644 index 0000000..4b5dcae --- /dev/null +++ b/tests/redirections.sh @@ -0,0 +1,9 @@ +# This script contains standard input/output redirections. +# It is expected to print "Hello World$" + +ls -l > /tmp/output +ls -l >/tmp/output2 + +echo Hello World > /tmp/file + +< file cat -e |