6

我有一个包含内容的文件:

( [datname]=template1 [datctype]=cs_CZ.utf-8 )
( [datname]=template0 [datctype]=cs_CZ.utf-8 )
( [datname]=postgres [datctype]=cs_CZ.utf-8 )
( [datname]=some\ stupid\ name [datctype]=cs_CZ.utf-8 )
( [datname]=jqerqwer,\ werwer [datctype]=cs_CZ.utf-8 )

我会阅读每一行并将上下文推送到关联数组变量。以下代码我没有成功:

(cat <<EOF
( [datname]=template1 [datctype]=cs_CZ.utf-8)
( [datname]=template0 [datctype]=cs_CZ.utf-8 )
EOF                      
) |                      
while read r             
do                       
   declare -A row=("$r") 
   echo ${row[datname]}  
done;

我收到一个错误:

test3.sh: line 8: row: ( [datname]=template1 [datctype]=cs_CZ.utf-8 ): must use subscript when assigning associative array

是否可以从文件中读取数组?

4

2 回答 2

6

进行以下两项更改:删除声明语句中的括号,并read与选项一起使用-r(禁用转义字符):

while read -r line; do
   declare -A row="$line" 
    ...  
done
于 2012-05-26T14:32:22.913 回答
2

从您的语句中删除括号,declare因为它们已经在您的数据中。

declare -A row="$r"
于 2012-05-26T14:04:41.853 回答