mirror of
https://git.busybox.net/busybox
synced 2025-05-10 12:43:48 +02:00
6 lines
120 B
Text
Executable file
6 lines
120 B
Text
Executable file
# test: closed fds should stay closed
|
|
exec 1>&-
|
|
echo TEST >TEST
|
|
echo JUNK # lost: stdout is closed
|
|
cat TEST >&2
|
|
rm TEST
|