脚本名称叫script_test.sh 后面参数有两个: 1 2
运行./script_test.sh 1 2 后
$*为"1 2"(一起被引号包住)
$@为"1" "2" (分别被包住)
$#为2(参数数量)
$0为./script_test.sh,即shell脚本名
$1为1,即输入的第一个参数名
脚本名称叫script_test.sh 后面参数有两个: 1 2
运行./script_test.sh 1 2 后
$*为"1 2"(一起被引号包住)
$@为"1" "2" (分别被包住)
$#为2(参数数量)
$0为./script_test.sh,即shell脚本名
$1为1,即输入的第一个参数名