summaryrefslogtreecommitdiffstats
path: root/tests/builtins3.sub
blob: 5596c56813463836660e9bf6a0a577203be07d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# declare -g added in bash-4.2
f=4

foo()
{
	declare -g f=8
	declare -g bar=4

	echo inside
}

echo before: f = $f
foo
echo after: f = $f bar = $bar