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