$加數(shù)字在Shell中的含義
原文地址
案例介紹
$1?is the first command-line argument passed to the shell script. Also, know as Positional parameters. For example, 1, 4 and so on. If you run ./script.sh filename1 dir1, then。
$1是傳遞給shell腳本的第一個(gè)命令行參數(shù)。另外,也被稱為位置參數(shù)。例如,$0、1、3、4等等。
比如如果你運(yùn)行./script.sh filename1 dir1
,那么:
$0 is the name of the script itself (script.sh)
$1 is the first argument (filename1)
$2 is the second argument (dir1)
$9 is the ninth argument
9.
${11} is the eleventh argument.
$0
代表了腳本名稱本身,比如這里的script.sh
就是$0的值。$1
代表了跟在腳本后面的第一個(gè)參數(shù),$1 = filename1
$2
代表跟在腳本后面的第二個(gè)參數(shù),$2 = dir1
。$9
對(duì)應(yīng)的到$9
代表之后的第九個(gè)參數(shù)${10}
是第10個(gè)參數(shù),必須在$9之后用括號(hào)括起來(lái)。${11}
是第11個(gè)參數(shù)。
What does $1
mean in Bash? $1
在Bash腳本的含義
Create a shell script named demo-args.sh
as follows:
最快的理解方式是實(shí)際在Linux上創(chuàng)建一個(gè)測(cè)試文件,這里我們命名為 demo-args.sh
通過vim
新建一個(gè)文件,腳本的內(nèi)容如下:
xander@xander:~$?vim?demo-arges.sh
文件當(dāng)中添加內(nèi)容如下:
script="$0"
first="$1"
second="$2"
tenth="${10}"
echo?"The?script?name?:?$script"
echo?"The?first?argument?:??$first"
echo?"The?second?argument?:?$second"
echo?"The?tenth?and?eleventh?argument?:?$tenth?and?${11}"

xander@xander:~$?ll
total?44
drwxr-x---?4?xander?xander?4096?Feb??3?13:12?./
drwxr-xr-x?3?root???root???4096?Jan??8?03:12?../
....
-rw-rw-r--?1?xander?xander??225?Feb??3?13:12?demo-arges.sh
....
因?yàn)樾陆ǖ奈募痪邆?code>x(可執(zhí)行)權(quán)限,使用命令chmod +x demo-arges.sh
為新建的腳本文件新增可執(zhí)行權(quán)限。
xander@xander:~$?chmod?+x?demo-arges.sh?
之后運(yùn)行腳本,我們傳入字母作為參數(shù):
xander@xander:~$?./demo-arges.sh?foo?bar?one?two?a?b?c?d?e?f?z?f?z?h
The?script?name?:?./demo-arges.sh
The?first?argument?:??foo
The?second?argument?:?bar
The?tenth?and?eleventh?argument?:?f?and?z
從結(jié)果來(lái)看可以驗(yàn)證之前介紹的方法。
1 在函數(shù)含義
Create a new script called func-args.sh;
創(chuàng)建一個(gè)名為func-args.sh
的新腳本。
xander@xander:~$?vim?func-args.sh
添加內(nèi)容如下:
die(){
?local?m="$1"??#?the?first?arg?
?local?e=$2????#?the?second?arg
?echo?"$m"?
?exit?$e
}
#?if?not?enough?args?displayed,?display?an?error?and?die
[?$#?-eq?0?]?&&?die?"Usage:?$0?filename"?1
#?Rest?of?script?goes?here
echo?"We?can?start?working?the?script..."
$# -eq 0
這個(gè)判斷邏輯是如果傳參為0的情況。

同樣需要添加可執(zhí)行權(quán)限:
xander@xander:~$?chmod?+x?func-args.sh
我們不傳入任何參數(shù),直接執(zhí)行腳本,則會(huì)進(jìn)入到如果顯示的args不夠多,則顯示錯(cuò)誤并結(jié)束
這一步。注意這里的$0
并不是腳本的名稱。
xander@xander:~$?./func-args.sh?
Usage:?./func-args.sh?filename
我們?cè)谀_本中傳入?yún)?shù),結(jié)果正確執(zhí)行:
xander@xander:~$?./func-args.sh?/etc/hosts
We?can?start?working?the?script...
其他例子
fingerprints()?{
?????????local?file="$1"
?????????while?read?l;?do
?????????????????[[?-n?$l?&&?${l###}?=?$l?]]?&&?ssh-keygen?-l?-f?/dev/stdin?<<<$l
?????????done?<?$file
}