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
/
varenv
/
array
/
array13.sub
blob
635cb977a583cbde53be70dc9553ff520095b0cf
1
2
func1(){
3
declare -g variable='function'
4
declare -g -a array=(function)
5
echo ${variable} ${array[@]}
6
}
7
8
declare -g variable='main'
9
declare -g -a array=(main)
10
echo ${variable} ${array[@]}
11
func1
12
echo ${variable} ${array[@]}