shell脚本判断字符串不相等
时间: 2023-11-25 14:05:00 浏览: 56
比较两个字符串是否相等的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
```
阅读全文