gpt4 book ai didi

arrays - 带有文件路径的shell脚本中的HashMap

转载 作者:行者123 更新时间:2023-12-03 08:07:07 25 4
gpt4 key购买 nike

我试图在 shell 脚本中声明一个哈希映射,其中包含一个文件路径作为键和一些变量作为值。
像这样的东西

fileVarMap=( ["Dir1/file1.txt"]="myVar1"  ["Dir2/file2.txt"]="myVar2" )

我收到一个错误,称为... syntax error: invalid arithmetic operator
如何做到这一点?

提前致谢。

最佳答案

如果您使用 Bash,手册页说:

Associative arrays are created using declare -A name.



所以,你应该试试这个:
declare -A fileVarMap
fileVarMap=( ["Dir1/file1.txt"]="myVar1" ["Dir2/file2.txt"]="myVar2" )
echo ${fileVarMap["Dir1/file1.txt"]}

关于arrays - 带有文件路径的shell脚本中的HashMap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16707862/

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