Linux基礎(day70)

20.5 shell腳本中的邏輯判斷

shell腳本中的邏輯判斷

  • 格式1:if 條件 ; then 語句; fi
  • 格式2:if 條件; then 語句; else 語句; fi
  • 格式3:if …; then … ;elif …; then …; else …; fi
  • 邏輯判斷表達式:if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等 -gt (>); -lt(<); -ge(>=); -le(<=);-eq(==); -ne(!=) 注意處處都是空格
  • 可使用 && || 結合多個條件
  • if [ $a -gt 5 ] && [ $a -lt 10 ]; then
  • if [ $b -gt 5 ] || [ $b -lt 3 ]; then

shell腳本中的邏輯判斷,shell注意點

  • for語句循環
[root@hf-01 ~]# for i in `seq 1 5`; do echo $i;done
1
2
3
4
5
[root@hf-01 ~]# 
[root@hf-01 ~]# for i in `seq 1 5`
> do
> echo $i
> done
1
2
3
4
5
[root@hf-01 ~]#

if語句第一種格式

  • 格式1:if 條件 ; then 語句; fi
[root@hf-01 shell]# vim if1.sh
#! /bin/bash
a=5
if [ $a -gt 3 ]
then 
    echo OK
fi
[root@hf-01 shell]# sh 03.sh
OK
[root@hf-01 shell]#

if語句第二種格式

  • 格式2:if 條件; then 語句; else 語句; fi
[root@hf-01 shell]# cp if1.sh if2.sh
[root@hf-01 shell]# vim if2.sh
[root@hf-01 shell]# sh -x if1.sh
+ a=1
+ '[' 1 -gt 3 ']'
+ echo nook
nook
[root@hf-01 shell]# cat if2.sh
#! /bin/bash
a=1
if [ $a -gt 3 ]
then
	echo OK
else
	echo nook
fi
[root@hf-01 shell]#

if語句第三種格式

  • 格式3:if …; then … ;elif …; then …; else …; fi
[root@hf-01 shell]# vim if3.sh
[root@hf-01 shell]# cat if3.sh
#! /bin/bash
a=6
if  [ $a -lt 5 ]
then 
	echo "<5"
elif [ $a -gt 5 ] && [ $a -lt 9 ]
then 
	echo "5<a<9"
else 
	echo ">9"
fi
[root@hf-01 shell]# sh -x if3.sh
+ a=6
+ '[' 6 -lt 5 ']'
+ '[' 6 -gt 5 ']'
+ '[' 6 -lt 9 ']'
+ echo '5<a<9'
5<a<9
[root@hf-01 shell]#
  • 邏輯判斷表達式
    • if [ $a -gt $b ] 表示,大於
    • if [ $a -lt 5 ] 表示,小於
    • if [ $b -eq 10 ] 表示,等於10
    • -ne(!=) 表示,不等於
    • -ge(>=) 表示,大於等於
    • -le(<=) 表示,小於等於
  • 可使用 && || 結合多個條件
    • if [ $a -gt 5 ] && [ $a -lt 10 ]; then
    • if [ $b -gt 5 ] || [ $b -lt 3 ]; then

20.6 文件目錄屬性判斷

if文件目錄屬性判斷

  • if 判斷文件、目錄屬性
    • [ -f file ]判斷是不是普通文件,且存在
    • [ -d file ] 判斷是不是目錄,且存在
    • [ -e file ] 判斷文件或目錄是否存在
    • [ -r file ] 判斷文件是否可讀
    • [ -w file ] 判斷文件是否可寫
    • [ -x file ] 判斷文件是否可執行

文件目錄屬性判斷

  • if 判斷文件、目錄屬性
    • [ -f file ]判斷是不是普通文件,且存在
[root@hf-01 shell]# vim file1.sh
[root@hf-01 shell]# cat file1.sh 
#! /bin/bash
f="/tmp/hanfeng"
if [ -f $f ]
then 
	echo $f exist
else
	touch $f
fi
[root@hf-01 shell]# sh -x file1.sh  第一次執行,會建立該文件
+ f=/tmp/hanfeng
+ '[' -f /tmp/hanfeng ']'
+ touch /tmp/hanfeng
[root@hf-01 shell]# sh -x file1.sh        第二次執行,會提示該文件已存在
+ f=/tmp/hanfeng
+ '[' -f /tmp/hanfeng ']'
+ echo /tmp/hanfeng exist
/tmp/hanfeng exist
[root@hf-01 shell]#
  • if 判斷文件、目錄屬性
    • [ -d file ] 判斷是不是目錄,且存在
[root@hf-01 shell]# vim file2.sh 
[root@hf-01 shell]# cat !$
cat file2.sh
#! /bin/bash
f="/tmp/hanfeng"
if [ -d $f ]
then 
	echo $f exist
else
	mkdir $f
fi
[root@hf-01 shell]# sh -x file2.sh
+ f=/tmp/hanfeng
+ '[' -d /tmp/hanfeng ']'
+ mkdir /tmp/hanfeng
[root@hf-01 shell]#
  • if 判斷文件、目錄屬性
    • [ -e file ] 判斷文件或目錄是否存在
  • 目錄和文件均可以touch 的,touch的目的是 若是這個文件或目錄不存在,它會建立這個文件,若是這個文件或目錄存在了,在touch 就會更改這個文件的三個 time
[root@hf-01 shell]# vim file2.sh 
[root@hf-01 shell]# sh -x file2.sh
+ f=/tmp/hanfeng
+ '[' -e /tmp/hanfeng ']'
+ echo /tmp/hanfeng exist
/tmp/hanfeng exist
[root@hf-01 shell]#
  • if 判斷文件、目錄屬性
    • [ -r file ] 判斷文件是否可讀
[root@hf-01 shell]# cat file2.sh 
#! /bin/bash
f="/tmp/hanfeng"
if [ -r $f ]
then 
	echo $f readable
fi
[root@hf-01 shell]# sh file2.sh    會看到文件可讀的
/tmp/hanfeng readable
[root@hf-01 shell]#
  • if 判斷文件、目錄屬性
    • [ -w file ] 判斷文件是否可寫
  • 去判斷是否刻度可寫,就判斷執行shell腳本的當前用戶
[root@hf-01 shell]# cat file2.sh 
#! /bin/bash
f="/tmp/hanfeng"
if [ -w $f ]
then 
	echo $f writeable
fi
[root@hf-01 shell]# sh file2.sh
/tmp/hanfeng writeable
[root@hf-01 shell]#
  • if 判斷文件、目錄屬性
    • [ -x file ] 判斷文件是否可執行
[root@hf-01 shell]# cat file2.sh 
#! /bin/bash
f="/tmp/hanfeng"
if [ -x $f ]
then 
	echo $f exeable
fi
[root@hf-01 shell]# sh file2.sh
/tmp/hanfeng exeable

經常使用案例

  • 而且 &&
f="/tmp/aminglinux"
[ -f $f ] && rm -f $f     //前一條命令執行成功纔會繼續執行以後的命令
等同於下面的表達方式
if [ -f $f ]     
then
      rm -rf $f
fi
  • 或者 ||
f="/tmp/aminglinux"
[ -f $f ] || touch $f    //前面命令不成功時,執行後面的命令
if [ ! -f $f ]        //  「!」表示了若是這條命令不成功,就往下執行
then
      touch $f
fi

20.7 if特殊用法

if 特殊用法

  • if [ -z "$a" ] 這個表示當變量a的值爲空時會怎麼樣
  • if [ -n "$a" ] 表示當變量a的值不爲空
  • if grep -q '123' 1.txt; then 表示若是1.txt中含有'123'的行時會怎麼樣
  • if [ ! -e file ]; then 表示文件不存在時會怎麼樣
  • if (($a<1)); then …等同於 if [ $a -lt 1 ]; then…
  • [ ] 中不能使用<,>,==,!=,>=,<=這樣的符號

if 特殊用法

  • if -z或者if -n 都不能做用在文件上,只能做用在變量上。
  • if [ -z "$a" ] 這個表示當變量a的值爲空時會怎麼樣
    • -z 表示爲空
  • !-z=-n
  • !-n=-z
[root@hf-01 shell]# vim file1.sh
[root@hf-01 shell]# cat !$
cat file1.sh
#! /bin/bash
n=`wc -l /tmp/lala`
if [ -z "$n" ]
then
	echo error
	exit
elif [ $n -gt 100 ]
then
	echo djsjdd
fi
[root@hf-01 shell]# sh -x file1.sh
++ wc -l /tmp/lala
wc: /tmp/lala: 沒有那個文件或目錄
+ n=
+ '[' -z '' ']'
+ echo error
error
+ exit
[root@hf-01 shell]#
[root@hf-01 shell]# vim file1.sh
[root@hf-01 shell]# cat !$
cat file1.sh
#! /bin/bash
if [ ! -f /tmp/lala ]
then
	echo "/tmp/lala not exit."
	exit
fi
n=`wc -l /tmp/lala`
if [ -z "$n" ]
then
	echo error
	exit
elif [ $n -gt 100 ]
then
	echo djsjdd
fi
[root@hf-01 shell]# sh file1.sh
/tmp/lala not exit.
[root@hf-01 shell]#
  • if [ -n "$a" ] 表示當變量a的值不爲空,或者說這個文件內容不爲空
    • -n 判斷變量的時候,須要用""雙引號引發來,如果文件的時候,則不須要用雙引號引發來
[root@hf-01 shell]# if [ -n 01.sh ]; then echo ok; fi
ok
[root@hf-01 shell]# echo $b

[root@hf-01 shell]# if [ -n "$b" ]; then echo $b; else echo "b is null"; fi
b is null
[root@hf-01 shell]#
  • if grep -q '123' 1.txt; then 表示若是1.txt中含有'123'的行時會怎麼樣
    • grep -wq 其中-w 後跟一個單詞,-q僅僅作一個過濾
    • 好比,如果想建立一個用戶,直接取反便可,如if ! grep -wq 'zabbix' /etc/passwd; then useradd zabbix; fi zabbix exist
[root@hf-01 shell]# grep -w 'zabbix' /etc/passwd
zabbix:x:998:995:Zabbix Monitoring System:/var/lib/zabbix:/sbin/nologin
[root@hf-01 shell]# if grep -wq 'zabbix' /etc/passwd; then echo "zabbix exist"; fi
zabbix exist
[root@hf-01 shell]#
  • if [ ! -e file ]; then 表示文件不存在時會怎麼樣linux

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

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

    • 一個等於號= 是賦值

20.8/20.9 case判斷

case判斷

  • 格式 case
變量名 in                 
     value1)               
         command                          
         ;;                     
     value2)                          
	command                          
	 ;;                      
     *)                        
	commond                            
	 ;;                      
	esac
  • 在case程序中,能夠在條件中使用|,表示或的意思, 好比
2|3)     
	command    
	;;

shell腳本案例:

  • 腳本目的是 輸入一個數字,而後用腳本去判斷這個數字的範圍
[root@hf-01 shell]# read -p "dfd" z
dfdgb
[root@hf-01 shell]# read -p "dfd: " z
dfd: fgdg
[root@hf-01 shell]#
#!/bin/bash
#判斷是否輸入有數值,空直接結束整個文本
read -p "Please input a number: " n    
#read 讓用戶輸出一些字符串;賦值給最後一個變量;這裏的賦值是「n」
if [ -z "$n" ]                    //變量n 爲空
then
    echo "Please input a number."
    exit 1   // 知識點 1
fi
#n1將輸入的數值清空數字,檢查變量是否爲空,若是不爲空,就證實輸入有其餘的字符,告知用戶,請輸入一個數字
n1=`echo $n|sed 's/[0-9]//g'`   //肯定,n變量是否爲數字
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 input value exceeds the calculation range.The number range is 0-100."
        ;;
esac

知識點 1

  • shell 中 exit0 exit1 的區別:
    • exit(0):正常運行程序並退出程序;
    • exit(1):非正常運行致使退出程序;
    • exit 0 能夠告知你的程序的使用者:你的程序是正常結束的。若是 exit 非 0 值,那麼你的程序的使用者一般會認爲你的程序產生了一個錯誤。
    • 在 shell 中調用完你的程序以後,用 echo $? 命令就能夠看到你的程序的 exit 值。在 shell 腳本中,一般會根據上一個命令的 $? 值來進行一些流程控制。
相關文章
相關標籤/搜索