2008-10-13 12:36:05 +00:00
|
|
|
export a=b
|
2008-10-13 08:54:42 +00:00
|
|
|
|
|
|
|
# external program
|
2008-10-13 12:36:05 +00:00
|
|
|
a=c /bin/true
|
2008-10-13 08:54:42 +00:00
|
|
|
env | grep ^a=
|
|
|
|
|
|
|
|
# builtin
|
2008-10-13 12:36:05 +00:00
|
|
|
a=d true
|
2008-10-13 08:54:42 +00:00
|
|
|
env | grep ^a=
|
|
|
|
|
|
|
|
# exec with redirection only
|
|
|
|
# in bash, this leaks!
|
2008-10-13 12:36:05 +00:00
|
|
|
a=e exec 1>&1
|
2008-10-13 08:54:42 +00:00
|
|
|
env | grep ^a=
|
|
|
|
|
|
|
|
echo OK
|