数组 – 从一个数组到另一个数组的Bash复制

前端之家收集整理的这篇文章主要介绍了数组 – 从一个数组到另一个数组的Bash复制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一系列的应用程序。叫它,
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
原文链接:https://www.f2er.com/bash/387363.html

猜你在找的Bash相关文章