Linux Shell : Test命令參數解析

來源:互聯網
上載者:User

 格式: test conditions

test -n string : string 不為空白
test -z string : string 為空白

test int1 -eq int2  : int1 == int 2
test int1 -ne int2  : int1 != int2 
test int1 -gt int2   : int1 > int2
test int1 -ge int2  : int1 >= int2
test int1 -lt int2    : int1 < int2
test int1 -le int2   : int1 <= int2

test -r filename   : 使用者對檔案filename有讀許可權
test -w filename  : 使用者對檔案filename有寫入權限
test -x filename   : 使用者對檔案filename有可執行許可權
test -f filename   : 檔案filename為普通檔案
test -d filename  : 檔案filename為目錄
test -c filename  : 檔案filename為字元裝置檔案
test -b filename  :檔案filename為塊裝置檔案
test -s filename  : 檔案filename大小不為零
test -t fnumb      : 與檔案描述符fnumb(預設值為1)相關的裝置是一個終端裝置

test ! -s empty   : empty 為空白

test -a       : And
test -o       : Or 

 

注意test命令和[ ]中括弧作用是一樣的。。

相關文章

聯繫我們

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