0 总结
Get to the points first. The article comes from LawsonAbs!
- updata on 20200505:修改相关格式
1.问题
使用shell
脚本判断字符串是否相等
基本要素
- 1)变量的声明
- 2)if语句的使用
- 3)echo的使用
#!/bin/bash
str1=lawson
str2=lawsonAbs
if [ $str1 = $str2 ] #注意这里的空格不能少!
then echo equal
else echo not equal
fi
代码的另一种表达,在if
语句中的两个变量中添加了“”符号。
#!/bin/bash
str1=liushen
str2=liuting
if [ "$str1" = "$str2" ]
then echo equal
else echo not equal
fi