gpt4 book ai didi

bash - 从文件中读取关联数组

转载 作者:行者123 更新时间:2023-11-29 08:59:59 24 4
gpt4 key购买 nike

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

( [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

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

最佳答案

进行以下两处更改:删除 declare 语句中的括号,并使用带有选项 -r(禁用转义字符)的 read:

while read -r line; do
declare -A row="$line"
...
done

关于bash - 从文件中读取关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10766732/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com