在Shell腳本中,if
語(yǔ)句確實(shí)可以進(jìn)行字符串比較
=
進(jìn)行相等比較:string1="hello"
string2="world"
if [ "$string1" = "$string2" ]; then
echo "Strings are equal."
else
echo "Strings are not equal."
fi
!=
進(jìn)行不相等比較:string1="hello"
string2="world"
if [ "$string1" != "$string2" ]; then
echo "Strings are not equal."
else
echo "Strings are equal."
fi
<>
進(jìn)行不相等比較(注意:<>
在某些Shell中可能不受支持,如bash):string1="hello"
string2="world"
if [ "$string1" <> "$string2" ]; then
echo "Strings are not equal."
else
echo "Strings are equal."
fi
在這些示例中,我們使用了[ ]
來(lái)進(jìn)行字符串比較。這是一個(gè)內(nèi)置的命令,用于在Shell腳本中進(jìn)行條件測(cè)試。在比較字符串時(shí),我們使用雙引號(hào)將變量括起來(lái),以防止空格或特殊字符導(dǎo)致的問(wèn)題。