这是我的问题的最简单的提炼版本。仍然存在的复杂性是有充分理由的,即使这里不明显。此外,脚本是内部的,没有机会执行恶意代码,因此 eval 非常好;不需要听到它有多邪恶...... ;) 假设密钥字符串中的管道和冒号是必需的分隔符。
key="target|platform|repo:revision"
hashname="hashmap"
declare -A $hashname
eval $hashname[$key]=0
echo $(eval $hashname[$key])
当然最后两行有问题,因为 eval 作用于 $key 变量内的管道和冒号。我的问题是如何保护这样的字符串免受 eval 的影响?我需要 eval 因为我指的是 hashmap 的名称而不是它本身。提前致谢。
==================================================== =================================
好的,我实际上开始认为我的问题不在于管道、冒号和 eval。所以让我粘贴真实的代码
function print_hashmap()
{
local hashname=$1
for key in `eval echo \$\{\!$hashname[@]\}`; do
local deref="$hashname[$key]"
local value=${!deref}
echo "key=${key} value=${value}"
done
}
function create_permutations2()
{
local hashname=$1 ; shift
local builds=$1 ; shift
local items=$1 ; shift
local separators=$@
echo "create_permutations(hashname=${hashname}, builds=${builds}, items=${items}, separators=${separators})"
if [ NULL != "${builds}" ]; then
for build in `echo $builds | tr ',' ' '`; do
local target="${build%%:*}"
local platforms="${build##*:}"
for platform in `echo $platforms | tr '|' ' '`; do
local key=
local ref=
if [ NULL != "${items}" ]; then
if [ NULL == "${separators}" ]; then separators=' '; fi
for separator in $separators; do
items=`echo $items | tr $separator ' '`
done
for item in $items; do
key="${target}|${platform}|${item}"
ref="$hashname[$key]"
declare "$ref"=0
done
else
key="${target}|${platform}"
ref="$hashname[$key]"
declare "$ref"=0
fi
done
done
fi
echo "created the following permutations:"
print_hashmap $hashname
}
builds="k:r|s|w,l:r|s|w"
repos="c:master,m:master"
hashname="hashmap"
declare -A $hashname
create_permutations2 $hashname $builds $repos ","
print_hashmap $hashname
我最近修改了我的代码以符合 FatalError 使用 ref 而不是 eval 的建议,并且错误是相同的: 表达式中的语法错误(错误标记靠近:master)