nt9856x/BSP/busybox/shell/hush_test/hush-redir/redir.tests
2023-03-28 15:07:53 +08:00

7 lines
120 B
Plaintext
Executable File

# test: closed fds should stay closed
exec 1>&-
echo TEST >TEST
echo JUNK # lost: stdout is closed
cat TEST >&2
rm TEST