shell中特殊變數$0 $1 $# $$ $! $?的涵義__shell指令碼

來源:互聯網
上載者:User
$0: 執行指令碼的名字 $*和$@: 將所有參數返回 $#: 參數的個數 $_: 代表上一個命令的最後一個參數 $$: 代表所在命令的PID $!: 代表最後執行的後台命令的PID $?: 代表上一個命令執行是否成功的標誌,如果執行成功則$? 為0,否則不為0
寫個指令碼測試下 [wang@localhost 案頭]$  vim test1.sh #!/bin/sh echo "number:$#" echo "name:$0" echo "first:$1" echo "second:$2" echo "argure1:$@" ret="$@" ret1=$@ echo "$ret" echo "$ret1" echo "argure2:$*" echo "arg:$_" echo "result:$?" echo "PID:$$" echo "pid:$!"
[wang@localhost 案頭]$   chmod +x test1.sh  [wang@localhost 案頭]$  ./test1.sh a b c number:3 name:./test1.sh first:a second:b argure1:a b c a b c a b c argure2:a b c arg:argure2:a b c result:0 PID:14973 pid:
[wang@localhost 案頭]$   ./test1.sh "a" "b" "c" 除了PID不一樣,其他結果是相同的。
經測試對以下表示懷疑: $*: 以一對雙引號給出參數列表 $@: 將各個參數分別加雙引號返回
注意: $0在shell和awk中的涵義不同。 shell:命令列的第一個單詞  awk:目前記錄


相關文章

聯繫我們

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