0


Shell:如何判断两个字符串相等

    在shell脚本中,我们可以使用以下几种方式来判断两个字符串是否相等:

1、使用等号(=)进行判断

if [ "$string1" = "$string2" ]; then
echo "字符串相等"
else
echo "字符串不相等"
fi

注意:等号两边的字符串变量需要使用双引号括起来,以防止空格或特殊字符引起错误。

2、使用双等号(==)进行判断

if [ "$string1" == "$string2" ]; then
echo "字符串相等"
else
echo "字符串不相等"
fi

注意:双等号(==)在bash中也可以用于字符串比较,但在一些其他的shell中可能不支持。

3、使用test命令进行判断

if test "$string1" = "$string2"; then
echo "字符串相等"
else
echo "字符串不相等"
fi

或者可以使用等号(=)的反斜杠转义形式

if test "$string1" == "$string2"; then
echo "字符串相等"
else
echo "字符串不相等"
fi

标签: linux shell

本文转载自: https://blog.csdn.net/hhd1988/article/details/140169954
版权归原作者 技术探索者 所有, 如有侵权,请联系我们删除。

“Shell:如何判断两个字符串相等”的评论:

还没有评论