1.if else语法:
if ....; then
....
elif ....; then
....
else
...
fi
注意:then之前必须有“;”
2.判断字符相等:
if [ str1 = str2 ];then
echo ok
else
echo "not ok"
注意:等于号两边必须有空格。
if ....; then
....
elif ....; then
....
else
...
fi
注意:then之前必须有“;”
if [ str1 = str2 ];then
echo ok
else
echo "not ok"
注意:等于号两边必须有空格。