shell脚本比较字符串
时间: 2023-03-16 10:49:17 浏览: 105
字符串比较脚本 shell script
4星 · 用户满意度95%
比较字符串可以使用test命令或者[ ]符号,语法如下:
```
if [ "$str1" = "$str2" ]; then
echo "字符串相等"
else
echo "字符串不相等"
fi
```
其中,"$str1"和"$str2"是要比较的两个字符串,=表示相等,!=表示不相等。注意,字符串比较时要加上双引号,否则可能会出现意外的结果。
阅读全文