]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/array11.sub
5961902acbcbba8e34cd8a240c25deebe74729e0
[thirdparty/bash.git] / tests / array11.sub
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.
5 #
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.
10 #
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/>.
13 #
14 # problems with associative array keys with ] and unbalanced [ ]
15 # fixed after bash-4.2
16
17 declare -A foo
18
19 foo=(["version[agent]"]=version.agent)
20
21 echo ${!foo[@]}
22 echo ${foo[@]}
23
24 unset foo
25 declare -A foo
26 foo["version[agent]"]=version.agent
27
28 echo ${!foo[@]}
29 echo ${foo[@]}
30
31 declare foo["foo[bar]"]=bowl
32
33 echo ${!foo[@]}
34 echo ${foo[@]}
35
36 declare -A array2["foo[bar]"]=bleh
37
38 array2["foobar]"]=bleh
39 array2["foo"]=bbb
40
41 echo ${!array2[@]}
42 echo ${array2[@]}
43
44 declare -A foo
45 foo=( ['ab]']=bar )
46
47 echo ${!foo[@]}
48 echo ${foo[@]}