Shell指令碼中的位置變數參數(特殊字元)執行個體講解_linux shell

來源:互聯網
上載者:User

$# : 傳遞到指令碼的參數個數
$* : 以一個單字串顯示所有向指令碼傳遞的參數。與位置變數不同,此選項參數可超過 9個
$$ : 指令碼啟動並執行當前進程 ID號
$! : 後台啟動並執行最後一個進程的進程 ID號
$@ : 與$#相同,但是使用時加引號,並在引號中返回每個參數
$- : 顯示shell使用的當前選項,與 set命令功能相同
$? : 顯示最後命令的退出狀態。 0表示沒有錯誤,其他任何值表明有錯誤。

複製代碼 代碼如下:

#!/bin/sh
#param.sh

# $0:檔案完整路徑名
echo "path of script : $0"
# 利用basename命令檔案路徑擷取檔案名稱
echo "name of script : $(basename $0)"
# $1:參數1
echo "parameter 1 : $1"
# $2:參數2
echo "parameter 2 : $2"
# $3:參數3
echo "parameter 3 : $3"
# $4:參數4
echo "parameter 4 : $4"
# $5:參數5
echo "parameter 5 : $5"
# $#:傳遞到指令碼的參數個數
echo "The number of arguments passed : $#"
# $*:顯示所有參數內容i
echo "Show all arguments : $*"
# $:指令碼當前啟動並執行ID號
echo "Process ID : $"
# $?:回傳碼
echo "errors : $?"

輸入./param.sh hello world

複製代碼 代碼如下:

[firefox@fire Shell]$ ./param.sh hello world
path of script : ./param.sh
name of script : param.sh
parameter 1 : hello
parameter 2 : world
parameter 3 :
parameter 4 :
parameter 5 :
The number of arguments passed : 2
Show all arguments : hello world
Process ID : 5181
errors : 0

相關文章

聯繫我們

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