Bash'te, bir dizinin belirli bir değer içerip içermediğini test etmenin en basit yolu nedir?
Düzenleme : Cevaplar ve yorumlar yardımıyla, bazı testlerden sonra, ben bu ile geldi:
function contains() {
local n=$#
local value=${!n}
for ((i=1;i < $#;i++)) {
if [ "${!i}" == "${value}" ]; then
echo "y"
return 0
fi
}
echo "n"
return 1
}
A=("one" "two" "three four")
if [ $(contains "${A[@]}" "one") == "y" ]; then
echo "contains one"
fi
if [ $(contains "${A[@]}" "three") == "y" ]; then
echo "contains three"
fi
Bunun en iyi çözüm olup olmadığından emin değilim, ama işe yarıyor gibi görünüyor.