在Python中执行Shell脚本可以使用subprocess
模块,具体步骤如下:
导入subprocess
模块:import subprocess
使用subprocess.run()
函数执行Shell脚本,传入Shell命令作为参数,例如subprocess.run("ls -l")
可以通过subprocess.run()
函数的返回值来获取Shell命令的执行结果,例如result = subprocess.run("ls -l", capture_output=True)
下面是一个完整的例子:
import subprocess
# 执行Shell脚本,并获取执行结果
result = subprocess.run("ls -l", capture_output=True, text=True)
# 输出执行结果
print(result.stdout)
在上面的例子中,subprocess.run("ls -l")
执行了一个简单的Shell命令ls -l
,capture_output=True
参数用于将命令的输出捕获到result
对象中,text=True
参数用于指定命令的输出是文本形式的。最后,使用print(result.stdout)
输出执行结果。
需要注意的是,在执行Shell脚本时,可以使用与在终端中执行Shell命令相同的语法,例如管道、重定向等。