經常使用的bsh算術運算方法
node
1.$[expression]:其中的表達式能夠是純數字組成的,也可使用變量引用變量值git
[root@localhost ~]# echo $[3+9*3] 30 在引用變量時,能夠不使用引用符 [root@localhost ~]# int1=3 [root@localhost ~]# int2=9 [root@localhost ~]# echo $[int1+int2*int1] 30
2.let VAR=EXPRESSION 根據算術表達式完成算術運算並賦值給指定的變量shell
[root@localhost ~]# let int1=$[int1+int2*int1] [root@localhost ~]# echo $int1 30
3.$((EXPRESSION)) 其中的表達式能夠是純數字組成的,也可使用變量引用變量值;在使用變量時,能夠將$符號省略,至關於$[expression]express
4.expr ARGU1 ARGU2 ARGU3 其中ARGU1 和 ARGU3必須是整數數值 ARGU2是算術運算符bash
[root@localhost ~]# expr 3 + 5 8 [root@localhost ~]# expr 3+5 3+5 [root@localhost ~]# expr 3 + 5 8 [root@localhost ~]# expr 3.3 + 5
注意:整數和符號之間須要有空格
5.echo "EXPRESSION" | bc 將echo輸出的結果傳送給計算器處理less
[root@localhost ~]# echo "33+5"|bc 38
6.bc <<<EXPRESSIONsocket
[root@localhost ~]# bc <<<33+5 38
條件測試命令:ide
test命令或 [ 命令測試
注意:此類條件測試命令,通常沒有執行結果,只有執行狀態返回值;其返回值爲0;表示ture,其返回值爲1爲false 編碼
1.數值測試:雙目操做:
測試操做符:
-eq //(equal):測試倆個數值是否相等,等爲0,不等爲1
[root@localhost ~]# [ 3 -eq 4 ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# [ 3 -eq 3 ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]#
-ne //(not equal):測試倆個數值是否不等,等爲1,不等爲0
[root@localhost ~]# [ 3 -ne 3 ] [root@localhost ~]# $? bash: 1: 未找到命令...
-lt //(less than):小於,測試左邊數值是否小於右邊的數值,小爲0,不小爲1
[root@localhost ~]# [ 2 -lt 3 ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ 4 -lt 3 ] [root@localhost ~]# $? bash: 1: 未找到命令...
-gt //(greater than):大於,測試左邊數值是否大於右邊的數值,大爲0,不大爲1
[root@localhost ~]# [ 2 -gt 3 ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# [ 4 -gt 3 ] [root@localhost ~]# $? bash: 0: 未找到命令...
-le //(less equal):小於等於,測試左邊數值是否不大於右邊數值,不大於爲0,大於爲1
[root@localhost ~]# [ 4 -le 4 ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ 5 -le 4 ] [root@localhost ~]# $? bash: 1: 未找到命令...
-ge //(greater equal):大於等於,測試左邊數值是否不小於右邊數值,不小於爲0,小於爲1
[root@localhost ~]# [ 4 -ge 4 ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ 3 -ge 4 ] [root@localhost ~]# [root@localhost ~]# $? bash: 1: 未找到命令...
注意:bash僅支持整數,不支持浮點數
2.字符串測試:
雙目測試:
==|=: 測試倆個字符串是否爲相同的字符串,相同爲真,不一樣爲假
[root@localhost ~]# [ expr == expr ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ expr1 == expr ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]#
!=:測試倆個字符串是否爲不一樣的字符串,不一樣爲真,相同爲假
[root@localhost ~]# [ expr1 != expr ] [root@localhost ~]# $? bash: 0: 未找到命令...
> :測試左邊的字符串所對應的ASCII編碼是否比右邊字符串對應的ASCII編碼大;大於爲真,小於爲假
<:測試左邊的字符串所對應的ASCII編碼是否比右邊字符串對應的ASCII編碼小;小於爲真,大於爲假
[root@localhost ~]# [[ a<b ]] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [[ a>b ]] [root@localhost ~]# $? bash: 1: 未找到命令...
STRING =~:測試左邊的字符串可否被右邊的PATTERN匹配,匹配爲真,不能匹配爲假
[root@localhost ~]# [[ string =~ [[:digit:]] ]] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# [[ string =~ [^[:digit:]] ]] [root@localhost ~]# $? bash: 0: 未找到命令...
注意:>,<,=~這三類操做符只能用在[[ expr ]]測試語句中
單目測試:
-z 'STRING' :測試string是否爲空串,空串爲真,不空爲假
-n 'STRING' :測試string是否爲不空串,不空爲真,空爲假
[root@localhost ~]# [ -z 'nothing' ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# [ -n 'nothing' ] [root@localhost ~]# $? bash: 0: 未找到命令...
注意:1.一般狀況下,字符串是須要引號引用的,單引號和雙引號均可以,只有在特定的場合和特定的狀況下,只能選用
單引號和雙引號之一;
2.[]和[[]]在某些狀況下,意義不徹底相同,要區分對待
3.若是使用[]和[[]]進行判斷,在表達式的兩邊都留有空白字符,以區分命令和參數之間的關係
4.全部的雙目測試操做符和參數之間也要留有空白字符
3.文件測試
單目測試 : //a.txt爲普通文本文件, /etc爲目錄
-a|-e :測試普通文件是否存在,存在爲真,不存在爲假
[root@localhost ~]# [ -a a.txt ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ -a abcabcaca ] [root@localhost ~]# $? bash: 1: 未找到命令...
-b :FILE exists and is block special:測試文件是否存在且爲塊設備文件,存在且爲塊設備爲真,不然爲假
-c :FILE exists and is character special:測試文件是否存在且爲字符設備文件,存在且爲字符設備爲真,不然爲假
-d :FILE exists and is a directory測試文件是否存在且是一個目錄,存在且爲目錄文件爲真,不然爲假
[root@localhost ~]# [ -d a.txt ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# [ -d /etc ] [root@localhost ~]# $? bash: 0: 未找到命令...
-f :FILE exists and is a regular file測試文件是否存在且爲普通文件,存在且爲普通文件爲真,不然爲假
[root@localhost ~]# [ -f a.txt ] [root@localhost ~]# $? bash: 0: 未找到命令... [root@localhost ~]# [ -f /etc ] [root@localhost ~]# $? bash: 1: 未找到命令...
-h|-l :FILE exists and is a symbolic link測試文件是否存在且爲符號連接文件,存在且爲符號連接文件爲真,不然爲假
-s :FILE exists and has a size greater than zero測試文件是否存在且大小大於0,存在大小爲0爲真,不然爲假 //3文件的大小爲0
[root@localhost ~]# [ -s 3 ] [root@localhost ~]# $? bash: 1
-S :FILE exists and is a socket測試文件是否存在且爲套接字文件,存在且爲套接字文件爲真,不然爲假
-t :file descriptor FD is opened on a terminal測試文件是否存在且是否在終端被打開,存在且被終端打開爲真,不然爲假
-r :測試文件是否存在且當前用戶是否被授予讀取權限,存在且受權爲真,不然爲假
-w :測試文件是否存在且當前用戶是否被授予寫權限,存在且受權爲真,不然爲假
-x :測試文件是否存在且當前用戶是否被授予執行或搜索權限,存在且受權爲真,不然爲假
[root@localhost ~]# ll b.sh -rw-r--r--. 1 root root 15 11月 9 19:59 b.sh [root@localhost ~]# [ -r b.sh ] [root@localhost ~]# echo $? 0 [root@localhost ~]# [ -w b.sh ] [root@localhost ~]# echo $? 0 [root@localhost ~]# [ -x b.sh ] [root@localhost ~]# echo $? 1
-u :測試文件是否存在且設置了SUID,存在且受權爲真,不然爲假
[root@localhost ~]# [ -u b.txt ] [root@localhost ~]# $? bash: 1: 未找到命令... [root@localhost ~]# chmod u+s b.txt [root@localhost ~]# [ -u b.txt ] [root@localhost ~]# $? bash: 0: 未找到命令...
-g :測試文件是否存在且設置了SGID,存在且受權爲真,不然爲假
[root@localhost ~]# chmod g+s b.sh [root@localhost ~]# [ -g b.sh ] [root@localhost ~]# echo $? 0
-k :測試文件是否存在且設置了STICKY,存在且受權爲真,不然爲假
[root@localhost ~]# chmod o+t b.sh [root@localhost ~]# [ -k b.sh ] [root@localhost ~]# echo $? 0
文件的全部權測試
-O :測試文件是否存在且屬主爲當前有效用戶,存在且屬主爲當前有效用戶爲真,不然爲假
[root@localhost ~]# [ -O a.txt ] [root@localhost ~]# echo $? 1 [root@localhost ~]# [ -O b.sh ] [root@localhost ~]# echo $? 0
-G :測試文件是否存在且屬組爲當前有效用戶的所在組,存在且屬組爲當前有效用戶的所在組爲真,不然爲假
[root@localhost ~]# [ -G a.txt ] [root@localhost ~]# echo $? 1 [root@localhost ~]# [ -G b.sh ] [root@localhost ~]# echo $? 0
雙目測試:
FILE1 -ef FILE2 :測試倆個文件是否擁有相同的Inode編號;即:倆個文件是否互爲硬件鏈接;
測試語句中添加邏輯運算符號
1.利用bash的邏輯運算符號運算
[ expr ] && [ expr ]
[ expr ] || [ expr ]
![ expr ]
2.利用條件測試命令自己的邏輯運算符號
[ expr1 -a expr2 ]
[ expr1 -o expr2 ]
[ !expr1 ]
命令的執行結果:
1.命令的正常輸出結果
2.命令的執行狀態返回值
0-255
0:表示命令成功執行或者條件判斷爲真
1-255:表示命令執行失敗或者條件判斷爲假
1,2,127 :系統默認保留的
3-126,128-255 :用戶自定義的
exit命令:
exit the shell
格式:exit [n]
退出shell時,使用n做爲狀態返回值,若是沒有指定n,則默認的狀態返回值爲最後一條命令的狀態返回值
注意:
當shell腳本運行時,一旦遇到exit命令,將當即結束運行此腳本的shell進程,同時此腳本的運行也會中止,
其後續的全部命令都不會再被解釋執行;所以,包含了exit命令的腳本,不要用source命令執行