gpt4 book ai didi

python - 如何在 Python 中使用子进程重定向输出?

转载 作者:太空宇宙 更新时间:2023-11-04 11:54:50 25 4
gpt4 key购买 nike

我在命令行中做了什么:

cat file1 file2 file3 > myfile

我想用 python 做什么:

import subprocess, shlex
my_cmd = 'cat file1 file2 file3 > myfile'
args = shlex.split(my_cmd)
subprocess.call(args) # spits the output in the window i call my python program

最佳答案

Python 3.5+ 中要重定向输出,只需将 stdout 参数的打开文件句柄传递给 subprocess.run:

# Use a list of args instead of a string
input_files = ['file1', 'file2', 'file3']
my_cmd = ['cat'] + input_files
with open('myfile', "w") as outfile:
subprocess.run(my_cmd, stdout=outfile)

正如其他人所指出的,为此目的使用诸如 cat 之类的外部命令是完全无关的。

关于python - 如何在 Python 中使用子进程重定向输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54728750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com