如何用Python中的子进程重定向输出?

如何用Python中的子进程重定向输出?

我在命令行中所做的事情:

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


慕容3067478
浏览 865回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python