gpt4 book ai didi

arrays - bash 中的数组运算符

转载 作者:行者123 更新时间:2023-11-29 08:49:43 24 4
gpt4 key购买 nike

有没有办法测试一个数组是否包含指定的元素?

例如:

array=(one two three)

if [ "one" in ${array} ]; then
...
fi

最佳答案

一个 for 循环就可以了。

array=(one two three)

for i in "${array[@]}"; do
if [[ "$i" = "one" ]]; then
...
break
fi
done

关于arrays - bash 中的数组运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5852446/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com