本文要來簡介 shell script 中if else這個判斷式.這應該是最常用且最簡單的判斷式了
以下用範例來說明
#和 string 去比對 ,如果條件成立,便會輸出Match 否則輸出No Match
#!/usr/bin/sh
string="test"
if [ $string == "test" ] ; then
echo "Match"
else
echo "No Match"
fi
多重式的if else
#如果有多個條件是判斷,這時就要用 if elif 處理了,範例如下
#!/usr/bin/sh
string="test"
if [ $string == "test" ] ; then
echo "in if "
elif [ $strint="test2" ] ; then
echo "in elif"
else
echo "in else"
fi
全站熱搜