逻辑控制
if 语法:注意空格
a=1b=2if [ $a == $b ]then echo "a==b"elif [ $a -gt $b ]then echo "a>b"elif [ $a -lt $b ]then echo "a<b"else echo "a!=b"fi