本文要來簡介 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


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 yuanann 的頭像
    yuanann

    拉不拉多的夢幻世界

    yuanann 發表在 痞客邦 留言(0) 人氣()