shell script-判斷式

來源:互聯網
上載者:User

標籤:

  test判斷式

看下面:

1 test -e /opt/a.txt && echo "exist" || echo "not exist"

 

判斷 /opt/a.txt 存不存在,存在輸出 exist ,否則輸出 not exist

test還有很多用法:

  1. 關於某個檔案名稱的”檔案類型“判斷,如 test -e fileName 表示判斷存在與否
    1. -e 該檔案名稱是否存在
    2. -f  該檔案名稱是否存在且為檔案
    3. -d 該檔案名稱是否存在且為目錄
  2. 關於檔案的許可權,如 test -f fileName 表示判斷檔案是否可讀
    1. -r
    2. -w
    3. -x
  3. 關於兩個檔案之間的比較 ,如 test file1 -nt file2
    1. -nt  (newer than)判斷 file1 是否比 file2 新
    2. -ot  (older than)判斷 file1 是否比 file2 舊
  4. 關於兩個整數之間的判斷,如 test n1 -eq n2
    1. -eq 判斷相等
    2. -ne 判斷不相等
    3. -gt  n1 大於 n2
    4. -lt   n1 小於 n2
    5. -ge  大於等於
    6. -le   小於等於
  5. 關於字串比較
    1. Test -z string  若string是Null 字元串,返回true
    2. Test -n string 若string是Null 字元串,返回false
    3. test str1=str2
    4. test str1!=str2
  6. 多重條件判定
    1.  -a    兩個條件同時成立, 如 test -e file1 -a -e file2 ,表示判斷 file1 和 file2 是否都存在
    2.  -o    任何一個條件成立就成立,如 test -e file1 -o -e file2,file1 或 file2 任何一個存在都返回 true
    3.  !      否定,如 test ! -e file1,  表示 file1 不存在返回 true

[  ... ] 判斷式

經常用於if 語句的判斷

注意: [ ] 中每個組件都需要用空格符來分隔; 變數最好都用雙引號括起來; 常量也用雙引號括起來

 

shell script-判斷式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.