python--脚本传参与shell脚本传参(位置参数)
写一个最简单的shell脚本,了解shell脚本是如何传参
1、 vim test1.sh
name=$1 age=$2 echo ${name} echo ${age}
2.调用脚本并传参
sh test1.sh zhangsan 14
11、 vim test1.py
test1.py
import sys try: if sys.argv[1]: print(sys.argv[1]) except Exception as e: print(‘当前无参数‘)
22、调用脚本并传参
相关推荐
以梦为马不负韶华 2020-10-20
huha 2020-10-16
laisean 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 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
libao 2020-09-16
Yyqingmofeige 2020-08-18
zhushixia 2020-08-17