shell脚本判断字符串是否相等
时间: 2023-10-27 16:04:51 浏览: 124
在 Bash shell 中,可以使用 `=` 或 `==` 运算符来判断两个字符串是否相等,例如:
```bash
str1="hello"
str2="world"
if [ "$str1" = "$str2" ]; then
echo "The strings are equal"
else
echo "The strings are not equal"
fi
```
在上面的例子中,我们首先定义了两个字符串 `str1` 和 `str2`,然后使用 `=` 运算符来比较它们是否相等。注意,在比较字符串时需要将字符串变量用双引号括起来,以避免一些特殊字符被解释成其他含义。如果两个字符串相等,就会输出 "The strings are equal",否则输出 "The strings are not equal"。
相关问题
shell脚本判断字符串不相等
在shell脚本中,可以使用`!=`来判断两个字符串是否不相等。示例如下:
```shell
str1="hello"
str2="world"
if [ "$str1" != "$str2" ]; then
echo "str1 is not equal to str2"
fi
```
输出结果:
```
str1 is not equal to str2
```
shell脚本判断字符串相等
在shell脚本中,使用`=`判断两个字符串是否相等,例如:
```shell
str1="hello"
str2="world"
if [ "$str1" = "$str2" ]; then
echo "str1 equals str2"
else
echo "str1 does not equal str2"
fi
```
注意,`=`左右两边要加上双引号,以防止空格等特殊字符的影响。另外,`=`两边要有空格。
阅读全文