我有一系列的应用程序。叫它,
depends=(cat ~/Depends.txt)
当我尝试解析列表并将其复制到一个新的数组时,
for i in "${depends[@]}" if [ $i #isn't installed ]; then newDepends+=("$i") fi done
会发生什么事情,只有依赖的第一个元素会依赖于新的数据。
for i in "${newDepends[@]}" echo $i done
^^这只会输出一件事。所以我试图找出为什么我的for循环只是移动第一个元素。整个列表最初是依赖的,所以不是这样,但我都是出于想法。
a=(foo bar "foo 1" "bar two") #create an array b=("${a[@]}") #copy the array in another one for value in "${b[@]}" ; do #print the new array echo "$value" done