Shell指令碼中$的用法

來源:互聯網
上載者:User
    $0: 指令碼名稱,相對路徑還是絕對路徑要看調用的方式。如果是在父目錄中,./dollarTest.sh調用,那麼$0就是 ./dollarTest.sh;如果是全路徑調用,如"/root/test/dollarTest.sh",那麼$0就是"/root/test/dollarTest.sh"。     $n:調用的第n個參數。ps:如果n > 9,那麼數字需要用括弧括起來,如${10},否則shell解譯器會認為是$1加上1這個數字。     $*:指令碼中的所有參數。     $@:同$*。
    $#:指令碼的參數個數。     $$:改shell指令碼執行時的進程號。     $?:上一條命令的輸出結果,如果上條命令exit的傳回值。     $!:上一條後台進程執行的pid號。     !$:上一條命令的最後一個字串。     $-:使用set命令設定的flag。
以運行指令碼dollarTest.sh為例,指令碼代碼:
#!/bin/bashecho '$0 is ' $0echo '$1 is ' $1echo '$11 is ' ${11}echo '$# is ' $#echo '$* is ' $*echo '$@ is ' $@echo '$$ is ' $$sh test.sh    # this shell script will exit with 11echo '$? is ' $?echo '$# is ' $#nohup ping www.baidu.com &echo '$! is ' $!echo $-
因有特殊字元,顯示不全,故用圖片顯示shell源碼;

運行命令及參數:./dollarTest.sh 1 2 3 4 5 6 7 8 9 10 21 22 23 24 執行結果:

相關文章

聯繫我們

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