blob: 27c8c65041f6cdc0cbe35aa1c5d622e04adc379b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# external program
a=b /bin/true
env | grep ^a=
# builtin
a=b true
env | grep ^a=
# exec with redirection only
# in bash, this leaks!
a=b exec 1>&1
env | grep ^a=
echo OK
|