当前位置: 首页 > 工具软件 > Bash++ > 使用案例 >

python执行bash命令

孔经武
2023-12-01

1、执行bash命令

import os
os.system('ls -al')

2、执行bash脚本

os.system('sh ./test.sh')

3、脚本中带参数

arg1='111'
arg2='222'
os.system('sh ./test.sh '+arg1+' '+arg2)//参数前后要有空格
 类似资料: