首页 > 后端开发 > Python教程 > 如何使用 Python 中的'subprocess”模块将外部命令的输出重定向到文件?

如何使用 Python 中的'subprocess”模块将外部命令的输出重定向到文件?

DDD
发布: 2024-11-29 00:50:10
原创
766 人浏览过

How do I redirect the output of an external command to a file using the `subprocess` module in Python?

在 Python 中使用 Subprocess 重定向输出

在 Python 中,subprocess 模块允许调用外部命令。执行命令时,通常需要将输出重定向到文件。

考虑以下命令行命令:

cat file1 file2 file3 > myfile
登录后复制

此命令连接文件 file1、file2 和 file3 并重定向文件输出到 myfile 文件。要在 Python 中实现类似的功能,您可以首先尝试以下操作:

import subprocess, shlex
my_cmd = 'cat file1 file2 file3 > myfile'
args = shlex.split(my_cmd)
subprocess.call(args)  # Spits output in the window from which Python was called
登录后复制

但是,此方法不会将输出重定向到文件。相反,它会将其打印到调用 Python 程序的窗口。

Python 3.5 解决方案

要正确重定向输出,请为 stdout 提供打开的文件句柄subprocess.run 中的参数:

input_files = ['file1', 'file2', 'file3']
my_cmd = ['cat'] + input_files
with open('myfile', "w") as outfile:
    subprocess.run(my_cmd, stdout=outfile)
登录后复制

此解决方案有效地将输出重定向到 myfile 文件,而不需要外部像猫一样命令。

以上是如何使用 Python 中的'subprocess”模块将外部命令的输出重定向到文件?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板