mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-28 16:09:51 +02:00
commit bash-20110608 snapshot
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# problems with associative array keys with ] and unbalanced [ ]
|
||||
# fixed after bash-4.2
|
||||
|
||||
declare -A foo
|
||||
|
||||
foo=(["version[agent]"]=version.agent)
|
||||
|
||||
echo ${!foo[@]}
|
||||
echo ${foo[@]}
|
||||
|
||||
unset foo
|
||||
declare -A foo
|
||||
foo["version[agent]"]=version.agent
|
||||
|
||||
echo ${!foo[@]}
|
||||
echo ${foo[@]}
|
||||
|
||||
declare foo["foo[bar]"]=bowl
|
||||
|
||||
echo ${!foo[@]}
|
||||
echo ${foo[@]}
|
||||
|
||||
declare -A array2["foo[bar]"]=bleh
|
||||
|
||||
array2["foobar]"]=bleh
|
||||
array2["foo"]=bbb
|
||||
|
||||
echo ${!array2[@]}
|
||||
echo ${array2[@]}
|
||||
Reference in New Issue
Block a user