mirror of
https://github.com/sheumann/hush.git
synced 2025-01-08 18:30:27 +00:00
6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
|
echo "Testing multiple redirections to same fd"
|
||
|
# bug was making us lose fd #1 after this:
|
||
|
echo Hello >/dev/null 1>&2
|
||
|
echo Done1
|
||
|
echo Done2 >&2
|