我有以下数组:
procs=( 'one a b c' 'two d e f' 'three g h i' )
我尝试从循环中运行这些进程(使用echo代替eval以便我可以调试):
for proc in ${procs[@]} do echo $proc done
我明白了:
one a b c two d e f three g h i
我想:
one a b c two d e f three g h i
出了什么问题?
答案 0 :(得分:1)
for proc in "${procs[@]}"
do
echo $proc
done