repo.or.cz
/
bush.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
improve of cmpl.
[bush.git]
/
testing
/
3.OriginalTest.dir
/
6.cmd
/
builtins
/
builtins3.sub
blob
1d9dfcaaba3f68ae56ddb22af992580af162767f
1
# declare -g added in bush-4.2
2
f=4
3
4
foo()
5
{
6
declare -g f=8
7
declare -g bar=4
8
9
echo inside
10
}
11
12
echo before: f = $f
13
foo
14
echo after: f = $f bar = $bar