shell中的case判斷、for循環、while循環

case循環

格式 
     case  變量名 in 
        value1)                   當值爲這個時
              command  			  執行這個指令
	      ;;
        value2)      				當值爲這個時
              command  				執行這個指令
              ;; 
        *)  						當值爲其餘內容時
              commond 				執行這個指令
              ;;     
     esac

在case程序中,能夠在條件中使用|,表示或的意思, 好比   
     2|3)     
	command
	;;

實例bash

#!/bin/bash
read -p "Please input a number: " n
if [ -z "$n" ]
then
    echo "Please input a number."
    exit 1
fi

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 "ook"
        ;;
    4)
        echo "oook"
        ;;
    *)
        echo "The number range is 0-100."
        ;; 
esac

for循環

  • 語法:for 變量名 in 條件;do ...;done
  • 案例
#! /bin/bash
sum=0
for i in `seq 1 100`
do
 sum=$[$sum+$i]
 echo $i
done
echo $sum
  • 文件列表循環
#!/bin/bash

cd /etc/
for a in `ls /etc/`
do
    if [ -d $a ]
    then
	 ls -d $a
    fi
done

while循環

  • 語法 while 條件;do ...;done
  • 案例
    #!/bin/bash
    while :
    do
        load=`w|head -1|awk -F 'load average: ' '{print $2}'|cut -d. -f1`
        if [ $load -gt 10 ]
        then
            top|mail -s "load is high: $load" asldkfls@11.com
        fi
        sleep 30
    done

     

  •  案例
    #!/bin/bash
    while :
    do
        read -p "Please input a number: " n
        if [ -z "$n" ]
        then
    	echo "you need input sth."
    	continue
        fi
        n1=`echo $n|sed 's/[0-9]//g'`
        if [ -n "$n1" ]
        then
    	echo "you just only input numbers."
            continue
        fi
        break
    done
    echo $n
相關文章
相關標籤/搜索