aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var_preserved.tests
blob: 1bddd870fd3dd58e1cdec4a37f95799e0408ea23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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