spegling av
http://git.busybox.net/busybox/
synced 2025-01-18 23:45:10 +00:00
6 rader
120 B
Text
Executable file
6 rader
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
|