arr1=("one" "two" "three") arr2=("two" "four" "six")
在Bash中将这两个数组联合起来的最佳方法是什么?
arr3=("${arr1[@]}" "${arr2[@]}")
然后,应用this post中的解决方案对其进行重复数据删除:
# Declare an associative array declare -A arr4 # Store the values of arr3 in arr4 as keys. for k in "${arr3[@]}"; do arr4["$k"]=1; done # Extract the keys. arr5=("${!arr4[@]}")
这假设是bash 4.