我试图用以下方式在bash中创建一个关联数组
#!/bin/bash
hash["name"]='Ashwin'
echo ${hash["name"]}
这将打印所需的输出:Ashwin执行时。
但是当密钥中有空格时,
#!/bin/bash
hash["first name"]='Ashwin'
echo ${hash["first name"]}
我收到以下错误
test2.sh: line 2: first name: syntax error in expression (error token is "name")
不允许键中有空格吗?
答案 0 :(得分:9)
如果您在值分配之前首先使用declare -A hash
,则脚本将按预期运行。
使用bash 4.2.25进行测试