shell:
python test.py a1 222
test.py
import sys
print(sys.argv[1], type(sys.argv[1])) # a1 str
print(sys.argv[2], type(sys.argv[2])) # 222 str
shell:
python test.py a1 222
test.py
import sys
print(sys.argv[1], type(sys.argv[1])) # a1 str
print(sys.argv[2], type(sys.argv[2])) # 222 str
在这个示例中,我们使用subprocess.run函数调用Python文件’example.py’。
• 在shell脚本中调用shell脚本,并传入参数(重点掌握)
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M