最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

$加數(shù)字在Shell中的含義

2023-03-07 21:22 作者:懶時(shí)小窩  | 我要投稿

原文地址

案例介紹

$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)容如下:

#!/bin/bash
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)容如下:

#!/bin/bash
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
}


$加數(shù)字在Shell中的含義的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
扎兰屯市| 新巴尔虎左旗| 绍兴市| 津南区| 巴中市| 平邑县| 彩票| 曲阜市| 商城县| 镇原县| 遂川县| 台中县| 杭锦旗| 南雄市| 邳州市| 小金县| 祁东县| 巴马| 昭通市| 乌恰县| 宁波市| 南汇区| 青浦区| 轮台县| 油尖旺区| 河北区| 哈尔滨市| 文安县| 永定县| 曲周县| 绥化市| 北流市| 阜宁县| 满洲里市| 剑川县| 铜梁县| 五华县| 盘锦市| 大宁县| 墨竹工卡县| 尼勒克县|