1. 程式人生 > >shell ,流程控制

shell ,流程控制

 

#如果ps -ef | grep -c "ssh"的結果大於一行,列印true

if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi


#判斷兩個變數是否相等

a=10
b=20
if [ $a == $b ]
then
   echo "a 等於 b"
elif [ $a -gt $b ]
then
   echo "a 大於 b"
elif [ $a -lt $b ]
then
   echo "a 小於 b"
else
   echo "沒有符合的條件"
fi

輸出

a 小於 b

 

#test命令連用

num1=$[2*3]
num2=$[1+5]
if test $[num1] -eq $[num2]
then
    echo '兩個數字相等!'
else
    echo '兩個數字不相等!'
fi

輸出

兩個數字相等!