mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
7 lines
154 B
Text
Executable file
7 lines
154 B
Text
Executable file
unset a
|
|
readonly a=A
|
|
|
|
# external commands and builtins should behave the same:
|
|
(exit 42); a=Z echo "Visible:$?"
|
|
echo
|
|
(exit 42); a=Z env echo "Visible:$?"
|