在 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中文网其他相关文章!