Shell教程5-Shell運算子

來源:互聯網
上載者:User

標籤:style   blog   http   io   os   使用   ar   檔案   div   

Bash 支援很多運算子,包括算數運算子、關係運算子、布林運算子、字串運算子和檔案測試運算子。

原生bash不支援簡單的數學運算,但是可以通過其他命令來實現,例如 awk 和 expr,expr 最常用。

expr 是一款運算式計算工具,使用它能完成運算式的求值操作。

例如,兩個數相加:
複製純文字新視窗
 
#!/bin/bashval=`expr 2 + 2`echo "Total value : $val"
運行指令碼輸出:
Total value : 4
兩點注意:
  • 運算式和運算子之間要有空格,例如 2+2 是不對的,必須寫成 2 + 2,這與我們熟悉的大多數程式設計語言不一樣。
  • 完整的運算式要被 ` ` 包含,注意這個字元不是常用的單引號,在 Esc 鍵下邊。
算術運算子先來看一個使用算術運算子的例子:
複製純文字新視窗
 
#!/bin/sha=10b=20val=`expr $a + $b`echo "a + b : $val"val=`expr $a - $b`echo "a - b : $val"val=`expr $a \* $b`echo "a * b : $val"val=`expr $b / $a`echo "b / a : $val"val=`expr $b % $a`echo "b % a : $val"if [ $a == $b ]then   echo "a is equal to b"fiif [ $a != $b ]then   echo "a is not equal to b"fi
運行結果:
a + b : 30a - b : -10a * b : 200b / a : 2b % a : 0a is not equal to b
注意:
  • 乘號(*)前邊必須加反斜線(\)才能實現乘法運算;
  • if...then...fi 是條件陳述式,後續將會講解。

算術運算子列表
運算子 說明 舉例
+ 加法 `expr $a + $b` 結果為 30。
- 減法 `expr $a - $b` 結果為 10。
* 乘法 `expr $a \* $b` 結果為  200。
/ 除法 `expr $b / $a` 結果為 2。
% 取餘 `expr $b % $a` 結果為 0。
= 賦值 a=$b 將把變數 b 的值賦給 a。
== 相等。用於比較兩個數字,相同則返回 true。 [ $a == $b ] 返回 false。
!= 不相等。用於比較兩個數字,不相同則返回 true。 [ $a != $b ] 返回 true。

注意:條件運算式要放在方括弧之間,並且要有空格,例如 [$a==$b] 是錯誤的,必須寫成 [ $a == $b ]。關係運算子關係運算子只支援數字,不支援字串,除非字串的值是數字。

先來看一個關係運算子的例子:
複製純文字新視窗
 
#!/bin/sha=10b=20if [ $a -eq $b ]then   echo "$a -eq $b : a is equal to b"else   echo "$a -eq $b: a is not equal to b"fiif [ $a -ne $b ]then   echo "$a -ne $b: a is not equal to b"else   echo "$a -ne $b : a is equal to b"fiif [ $a -gt $b ]then   echo "$a -gt $b: a is greater than b"else   echo "$a -gt $b: a is not greater than b"fiif [ $a -lt $b ]then   echo "$a -lt $b: a is less than b"else   echo "$a -lt $b: a is not less than b"fiif [ $a -ge $b ]then   echo "$a -ge $b: a is greater or  equal to b"else   echo "$a -ge $b: a is not greater or equal to b"fiif [ $a -le $b ]then   echo "$a -le $b: a is less or  equal to b"else   echo "$a -le $b: a is not less or equal to b"fi
運行結果:
10 -eq 20: a is not equal to b10 -ne 20: a is not equal to b10 -gt 20: a is not greater than b10 -lt 20: a is less than b10 -ge 20: a is not greater or equal to b10 -le 20: a is less or  equal to b

關係運算子列表
運算子 說明 舉例
-eq 檢測兩個數是否相等,相等返回 true。 [ $a -eq $b ] 返回 true。
-ne 檢測兩個數是否相等,不相等返回 true。 [ $a -ne $b ] 返回 true。
-gt 檢測左邊的數是否大於右邊的,如果是,則返回 true。 [ $a -gt $b ] 返回 false。
-lt 檢測左邊的數是否小於右邊的,如果是,則返回 true。 [ $a -lt $b ] 返回 true。
-ge 檢測左邊的數是否大等於右邊的,如果是,則返回 true。 [ $a -ge $b ] 返回 false。
-le 檢測左邊的數是否小於等於右邊的,如果是,則返回 true。 [ $a -le $b ] 返回 true。
布林運算子先來看一個布林運算子的例子:
複製純文字新視窗
 
#!/bin/sha=10b=20if [ $a != $b ]then   echo "$a != $b : a is not equal to b"else   echo "$a != $b: a is equal to b"fiif [ $a -lt 100 -a $b -gt 15 ]then   echo "$a -lt 100 -a $b -gt 15 : returns true"else   echo "$a -lt 100 -a $b -gt 15 : returns false"fiif [ $a -lt 100 -o $b -gt 100 ]then   echo "$a -lt 100 -o $b -gt 100 : returns true"else   echo "$a -lt 100 -o $b -gt 100 : returns false"fiif [ $a -lt 5 -o $b -gt 100 ]then   echo "$a -lt 100 -o $b -gt 100 : returns true"else   echo "$a -lt 100 -o $b -gt 100 : returns false"fi
運行結果:
10 != 20 : a is not equal to b10 -lt 100 -a 20 -gt 15 : returns true10 -lt 100 -o 20 -gt 100 : returns true10 -lt 5 -o 20 -gt 100 : returns false

布林運算子列表
運算子 說明 舉例
! 非運算,運算式為 true 則返回 false,否則返回 true。 [ ! false ] 返回 true。
-o 或運算,有一個運算式為 true 則返回 true。 [ $a -lt 20 -o $b -gt 100 ] 返回 true。
-a 與運算,兩個運算式都為 true 才返回 true。 [ $a -lt 20 -a $b -gt 100 ] 返回 false。
字串運算子先來看一個例子:
複製純文字新視窗
 
#!/bin/sha="abc"b="efg"if [ $a = $b ]then   echo "$a = $b : a is equal to b"else   echo "$a = $b: a is not equal to b"fiif [ $a != $b ]then   echo "$a != $b : a is not equal to b"else   echo "$a != $b: a is equal to b"fiif [ -z $a ]then   echo "-z $a : string length is zero"else   echo "-z $a : string length is not zero"fiif [ -n $a ]then   echo "-n $a : string length is not zero"else   echo "-n $a : string length is zero"fiif [ $a ]then   echo "$a : string is not empty"else   echo "$a : string is empty"fi
運行結果:
abc = efg: a is not equal to babc != efg : a is not equal to b-z abc : string length is not zero-n abc : string length is not zeroabc : string is not empty

字串運算子列表
運算子 說明 舉例
= 檢測兩個字串是否相等,相等返回 true。 [ $a = $b ] 返回 false。
!= 檢測兩個字串是否相等,不相等返回 true。 [ $a != $b ] 返回 true。
-z 檢測字串長度是否為0,為0返回 true。 [ -z $a ] 返回 false。
-n 檢測字串長度是否為0,不為0返回 true。 [ -z $a ] 返回 true。
str 檢測字串是否為空白,不為空白返回 true。 [ $a ] 返回 true。
檔案測試運算子檔案測試運算子用於檢測 Unix 檔案的各種屬性。

例如,變數 file 表示檔案“/var/www/tutorialspoint/unix/test.sh”,它的大小為100位元組,具有 rwx 許可權。下面的代碼,將檢測該檔案的各種屬性:
複製純文字新視窗
 
#!/bin/shfile="/var/www/tutorialspoint/unix/test.sh"if [ -r $file ]then   echo "File has read access"else   echo "File does not have read access"fiif [ -w $file ]then   echo "File has write permission"else   echo "File does not have write permission"fiif [ -x $file ]then   echo "File has execute permission"else   echo "File does not have execute permission"fiif [ -f $file ]then   echo "File is an ordinary file"else   echo "This is sepcial file"fiif [ -d $file ]then   echo "File is a directory"else   echo "This is not a directory"fiif [ -s $file ]then   echo "File size is zero"else   echo "File size is not zero"fiif [ -e $file ]then   echo "File exists"else   echo "File does not exist"fi
運行結果:
File has read accessFile has write permissionFile has execute permissionFile is an ordinary fileThis is not a directoryFile size is zeroFile exists

檔案測試運算子列表
操作符 說明 舉例
-b file 檢測檔案是否是塊裝置檔案,如果是,則返回 true。 [ -b $file ] 返回 false。
-c file 檢測檔案是否是字元裝置檔案,如果是,則返回 true。 [ -b $file ] 返回 false。
-d file 檢測檔案是否是目錄,如果是,則返回 true。 [ -d $file ] 返回 false。
-f file 檢測檔案是否是普通檔案(既不是目錄,也不是裝置檔案),如果是,則返回 true。 [ -f $file ] 返回 true。
-g file 檢測檔案是否設定了 SGID 位,如果是,則返回 true。 [ -g $file ] 返回 false。
-k file 檢測檔案是否設定了粘著位(Sticky Bit),如果是,則返回 true。 [ -k $file ] 返回 false。
-p file 檢測檔案是否是具名管道,如果是,則返回 true。 [ -p $file ] 返回 false。
-u file 檢測檔案是否設定了 SUID 位,如果是,則返回 true。 [ -u $file ] 返回 false。
-r file 檢測檔案是否可讀,如果是,則返回 true。 [ -r $file ] 返回 true。
-w file 檢測檔案是否可寫,如果是,則返回 true。 [ -w $file ] 返回 true。
-x file 檢測檔案是否可執行,如果是,則返回 true。 [ -x $file ] 返回 true。
-s file 檢測檔案是否為空白(檔案大小是否大於0),不為空白返回 true。 [ -s $file ] 返回 true。
-e file 檢測檔案(包括目錄)是否存在,如果是,則返回 true。 [ -e $file ] 返回 true。
複製格式化新視窗
 

Shell教程5-Shell運算子

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.