ubuntu傳參數到shell腳本的示例:
1.打開終端輸入以下命令創建一個shell腳本。
vim test.sh
2.腳本test.sh的內容如下:
#!/bin/sh
name=$1
echo "the ${name} are great man!"
3.再輸入以下命令給新創建的test.sh腳本賦可執行權限。
chmod +x test.sh
4.輸入以下命令執行test.sh腳本。
./test.sh "xiao xin"
5.得到結果如下:
the xiao xin are great man!
6.解析:
"name=$1"中$1為系統提供的位置參數,$0代表程序的名稱(./test.sh),[$1 $2...]從1開始為傳遞的參數。