data/method/busybox/busybox-1.36.0/shell/hush_test/hush-vars/var_preserved.tests

17 lines
186 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
export a=b
# external program
a=c /bin/true
env | grep ^a=
# builtin
a=d true
env | grep ^a=
# exec with redirection only
# in bash, this leaks!
a=e exec 1>&1
env | grep ^a=
echo OK