improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 6.cmd / builtins / builtins3.sub
blob1d9dfcaaba3f68ae56ddb22af992580af162767f
1 # declare -g added in bush-4.2
2 f=4
4 foo()
6         declare -g f=8
7         declare -g bar=4
9         echo inside
12 echo before: f = $f
13 foo
14 echo after: f = $f bar = $bar