if else 语句
if 语句语法格式:
if condition then command1 command2 ......... commandN fi
写成一行:
if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi
[ ] 中括号中,左右各空一格
末尾的fi就是if倒过来拼写,后面还会遇到类似的。
if else 语法格式:
if condition then command1 command2 ... commandN else command fi
if else - if else 语法格式:
if condition1 then command1 elif condition2 then command2 else commandN fi