Shell if邏輯運算的寫法
詳情地址:? https://www.xiaobuteach.com/shell/base2/if-logic.html?from=bili
Shell if邏輯運算的寫法
現(xiàn)在要表達 a==1 && b==2含義,可用三種方法:
方法1:完全test命令或[ ]。
邏輯運算符使用test命令的語法: -a、-o。
read -p "請輸入分數(shù):" score
if [ $score -eq 100 -a 1 -eq 1 ];then
? ?echo "滿分。"
? ?echo "xiaobuteach.com"
else
? ?echo "不是滿分"
fi
方法2:完全(( ))數(shù)學(xué)計算
使用常規(guī)的邏輯運算符:&&、||
read -p "請輸入分數(shù):" score
if (( score==100 && 1==1))
then
? ?echo "滿分。"
? ?echo "xiaobuteach.com"
else
? ?echo "不是滿分"
fi
方法3:test命令結(jié)合常規(guī)與或
分別兩個[ ],&&連接它們;&&在[ ]的外部。
read -p "請輸入分數(shù):" score
if [ $score -eq 100 ] && [ 1 -eq 1 ]
then
? ?echo "滿分。"
? ?echo "xiaobuteach.com"
else
? ?echo "不是滿分"
fi
標(biāo)簽: