improve of cmpl.
[bush.git] / tests / varenv18.sub
blob4ad7f1a46a003a3171793236355d2f0a70c1e02d
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
15 arr=(zero one two)
16 four=four
18 f()
20         local -a arr=( "${arr[@]}" )
21         arr+=(three four five)
22         declare -p arr
25 declare -p arr
27 f1()
29         local -a arr=(three $four five)
30         declare -p arr
34 set -u
35 name='arr[@]'
36 f2()
38         local -a arr=("${!name}")
39         declare -p arr