def run_cmd(cmd):
try:
import subprocess
except ImportError:
_, result_f, error_f = os.popen3(cmd)
else:
process = subprocess.Popen(cmd, shell = True,
stdout = subprocess.PIPE, stderr = subprocess.PIPE)
result_f, error_f = process.stdout, process.stderr
errors = error_f.read()
if errors: pass
result_str = result_f.read().strip()
if result_f : result_f.close()
if error_f : error_f.close()
return result_str
在python中执行shell命令,并以字符串形式返回命令执行结果
最新推荐文章于 2024-09-13 15:48:02 发布
本文介绍了一种在Python中执行命令行指令并获取其输出和错误信息的方法。该方法首先尝试导入subprocess模块来使用现代的方式执行命令,如果失败,则采用较旧的方式通过os模块执行。文章详细解释了如何捕获标准输出和标准错误,并确保它们被正确关闭。
摘要由CSDN通过智能技术生成