]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/array11.sub
Bash-5.2 patch 26: fix typo when specifying readline's custom color prefix
[thirdparty/bash.git] / tests / array11.sub
CommitLineData
8868edaf
CR
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#
ac50fbac
CR
14# problems with associative array keys with ] and unbalanced [ ]
15# fixed after bash-4.2
16
17declare -A foo
18
19foo=(["version[agent]"]=version.agent)
20
21echo ${!foo[@]}
22echo ${foo[@]}
23
24unset foo
25declare -A foo
26foo["version[agent]"]=version.agent
27
28echo ${!foo[@]}
29echo ${foo[@]}
30
31declare foo["foo[bar]"]=bowl
32
33echo ${!foo[@]}
34echo ${foo[@]}
35
36declare -A array2["foo[bar]"]=bleh
37
38array2["foobar]"]=bleh
39array2["foo"]=bbb
40
41echo ${!array2[@]}
42echo ${array2[@]}
43
44declare -A foo
45foo=( ['ab]']=bar )
46
47echo ${!foo[@]}
48echo ${foo[@]}