shell腳本中的邏輯判斷-文件目錄屬性判斷-if特殊用法-case判斷

shell腳本中的邏輯判斷:

if語句:shell

   if 條件;then 語句;fibash

   if 條件;then 語句;else 語句;fispa

   if 條件;then 語句;elif 條件;then 語句;else 語句;ficode

邏輯判斷表達式:字符串

    if [ $a -gt $b ];if[ $b eq 10 ];...;                      #注意[]中與表達式間有空格;可用&&和||組合條件input

    大於        -gtit

    小於        -ltclass

    等於        -eq後臺

    不等        -ne變量

    大於等於 -ge

    小於等於 -le

 

文件目錄屬性判斷:

[ -f file ] 判斷是不是普通文件,且存在

[ -d file ] 判斷是不是目錄,且存在

[ -e file ] 判斷文件或目錄是否存在

[ -r file ] 判斷文件是否可讀

[ -w file ] 判斷文件是否可寫

[ -x file ] 判斷文件是否可執行

 

&&:而且

f=/tmp/1.txt

[ -f $f ] && rm -f $f                           #前一條命令執行成功纔會繼續執行以後的命令,效果等同於如下命令:

if [ -f $f ]

then

rm -rf $f

fi

 

||:或者

f=/tmp/1.txt

if [ -f $f ] || touch $f fi                           #前面命令不成功時,才執行後面的命令效果等同於如下命令: 

if [ -f $f ]

then

touch $f

fi

   

if特殊用法:

if [ -z "$a" ]  表示當變量a的值爲空時繼續;當判斷文件時,可不帶 雙引號

if [ -n "$a" ] 表示當變量a的值不爲空繼續;當判斷文件時,可不帶 雙引號

if grep -q '123' 1.txt; then  表示若是1.txt中含有'123'的行時會怎麼樣 ;-q只後臺篩選,不打印結果

if [ ! -e file ]; then 表示文件不存在時會怎麼樣

if (($a<1)); then …等同於 if [ $a -lt 1 ]; then…

[ ] 中不能使用<,>,==,!=,>=,<=這樣的符號

 

case判斷:

格式:             #注意:$xxx 爲變量;當變量值等於value1時,執行command1;當等於value2或value3時,執行command2;當其餘時,執行command3

case $xxx in

    value1)

        command1

        ;;

    value2|value3)

        command2

        ;;

    *)

        command3

        ;;

esac

 

腳本案例:

需求:執行腳本,讓用戶輸入一個數字,而後用腳本去判斷這個數字的範圍

#!/bin/bash
#read 讓用戶所輸入的字符串;-p 給出提示信息,信息用雙引號區分,賦值給變量「n」
read -p "Please input a number: " n    
#判斷是否輸入有數值,空直接結束整個文本
if [ -z "$n" ]                    
then
    echo "Please input a number."
    exit 1   
fi
#n1將輸入的字符串所包含的數字清空,並檢查變量是否爲空,若是不爲空,就證實輸入有其餘的字符,告知用戶,請輸入一個數字
#肯定,n變量是否爲數字
n1=`echo $n|sed 's/[0-9]//g'`   
if [ -n "$n1" ]
then
echo "Please input a number."
exit 1
fi

if [ $n -lt 60 ] && [ $n -ge 0 ]
then
    tag=1
elif [ $n -ge 60 ] && [ $n -lt 80 ]
then
    tag=2
elif [ $n -ge 80 ]  && [ $n -lt 90 ]
then
    tag=3
elif [ $n -ge 90 ] && [ $n -le 100 ]
then
    tag=4
else
    tag=0
fi
case $tag in
    1)
         echo "not ok"
        ;;
    2)
         echo "ok"
        ;;
    3)
         echo "okok"
        ;;
    4)
         echo "okokok"
        ;;
    *)
         echo "The number range is 0-100."
        ;;
esac
相關文章
相關標籤/搜索