if条件语句
1.单分支结构
第一种语法:
if <条件表达式>
then
指令
fi
第二种语法:
if <条件表达式>; then
指令
fi
[root@hxjk_test_backend_services test]# cat ee.sh echo "$1" if [ $1 -eq $2 ] then echo 1 fi; if [ -n $3 ];then echo $3 fi [root@hxjk_test_backend_services test]# sh ee.sh 11 22 33 11 33 [root@hxjk_test_backend_services test]# sh ee.sh 11 11 22 11 1 22 [root@hxjk_test_backend_services test]#