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
init version.
[bush.git]
/
tests.bak
/
varenv20.sub
blob
5fba8c4c1f537f00b836432247a77871e95a09a0
1
# tests of local variables with the same name as variables passed in the
2
# temporary environment
3
4
f() { local v=x; local -p; }
5
v=t f
6
7
f() { local v; declare -p v; }
8
v=t f
9
10
f() { local v=x; unset v; declare -p v; }
11
v=g
12
f
13
v=t f