[Shell]向shell脚本传递参数
我们可以在执行 Shell 脚本时,向脚本传递参数,脚本内获取参数的格式为:$n
。
n 代表一个数字,1 为执行脚本的第一个参数,2 为执行脚本的第二个参数,以此类推……。 $#
传递到脚本的参数个数
以下实例我们向脚本传递三个参数,并分别输出,其中 $0 为执行的文件名:
test.sh
echo "Shell传递参数实例"; echo "shell文件名是:$0"; echo "第1个参数:$1"; echo "第2个参数:$2";
执行效果:
348-G4:~/Desktop$ sh test.sh 5 9 Shell传递参数实例 shell文件名是:test.sh 第1个参数:5 第2个参数:9
参考文档:
[Shell基础] 向脚本传递参数
相关推荐
libao 2020-09-16
xiaonamylove 2020-08-16
huha 2020-10-16
laisean 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
以梦为马不负韶华 2020-10-20
JohnYork 2020-10-16
Julyth 2020-10-16
applecarelte 2020-10-16
laisean 2020-09-27
flycappuccino 2020-09-27
liguojia 2020-09-27
wangzhaotongalex 2020-09-22
流年浅滩 2020-10-23
liujianhua 2020-10-22
woaimeinuo 2020-10-21
tufeiax 2020-09-03
laisean 2020-09-01
vvu 2020-09-16
Yyqingmofeige 2020-08-18