Shell script 的預設變數($0, $1…)

來源:互聯網
上載者:User

 

 假設我要運行一個可以攜帶參數的 script ,運行該指令碼後螢幕會顯示如下的資料:

  • 程式的檔名為何?
  • 共有幾個參數?
  • 若參數的個數小於 2 則告知使用者參數數量太少
  • 全部的參數內容為何?
  • 第一個參數為何?
  • 第二個參數為何

#!/bin/bash
#The program  shows the script name,and the parameters....

echo "The script name is         ==> $0"
echo "The num of the parameters is     ==>$#"
[ $# -lt 2 ] && echo "The num is less than 2. Stop here!" && exit 0
echo "The whole parameter is      ==> '$@'"
echo "The 1st parameter is        ==>$1"
echo "The 2nd parameter is        >$2"

 

執行指令碼:
[oracle@SOR_SYS~]$ sh parameters.sh opt1 oracle 192.168.50.229 8081
The script name is         ==> parameters.sh
The num of the parameters is     ==>4
The whole parameter is      ==> 'opt1 oracle 192.168.50.229 8081'
The 1st parameter is        ==>opt1
The 2nd parameter is        >oracle
[oracle@SOR_SYS~]$

  • $# :代表後接的參數『個數』,以上表為例這裡顯示為『 4 』;
  • $@ :代表『 "$1" "$2" "$3" "$4" 』之意,每個變數是獨立的(用雙引號括起來);
  • $* :代表『 "$1c$2c$3c$4" 』,其中
    c 為分隔位元組,預設為空白鍵, 所以本例中代表『 "$1 $2 $3 $4" 』之意。

 

相關文章

聯繫我們

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