mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
5 lines
126 B
Text
Executable file
5 lines
126 B
Text
Executable file
# ash once couldn't redirect above fd#9
|
|
exec 1>/dev/null
|
|
(echo LOST1 >&22) 22>&1
|
|
(echo LOST2 >&22) 22>&1
|
|
(echo OK >&22) 22>&2
|