溫馨提示×

ubuntu如何傳參數(shù)到shell腳本

小新
890
2021-02-22 13:33:21
欄目: 智能運維

ubuntu如何傳參數(shù)到shell腳本

ubuntu傳參數(shù)到shell腳本的示例:

1.打開終端輸入以下命令創(chuàng)建一個shell腳本。

vim test.sh

2.腳本test.sh的內(nèi)容如下:

#!/bin/sh

name=$1

echo "the ${name} are great man!"

3.再輸入以下命令給新創(chuàng)建的test.sh腳本賦可執(zhí)行權(quán)限。

chmod +x test.sh

4.輸入以下命令執(zhí)行test.sh腳本。

./test.sh "xiao xin"

5.得到結(jié)果如下:

the xiao xin are great man!

6.解析:

"name=$1"中$1為系統(tǒng)提供的位置參數(shù),$0代表程序的名稱(./test.sh),[$1 $2...]從1開始為傳遞的參數(shù)。

0