mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 03:32:18 +00:00
7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
|
# test: closed fds should stay closed
|
||
|
exec 1>&-
|
||
|
echo TEST >TEST
|
||
|
echo JUNK # lost: stdout is closed
|
||
|
cat TEST >&2
|
||
|
rm TEST
|