我在命令行中做了什么:
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
答案 0 :(得分:226)
要回答原始问题,要重定向输出,只需将stdout
参数的打开文件句柄传递给subprocess.call
:
# 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.call(my_cmd, stdout=outfile)
但正如其他人所指出的那样,为此目的使用cat
这样的外部命令是完全无关的。
答案 1 :(得分:20)
更新:不建议使用os.system,尽管仍然可以在Python 3中使用。
使用os.system
:
os.system(my_cmd)
如果你真的想使用子进程,这里是解决方案(主要是从子进程的文档中解除):
p = subprocess.Popen(my_cmd, shell=True)
os.waitpid(p.pid, 0)
OTOH,你可以完全避免系统调用:
import shutil
with open('myfile', 'w') as outfile:
for infile in ('file1', 'file2', 'file3'):
shutil.copyfileobj(open(infile), outfile)
答案 2 :(得分:4)
@PoltoS我想加入一些文件,然后处理生成的文件。我认为使用猫是最简单的选择。有更好的/ pythonic方式吗?
当然:
with open('myfile', 'w') as outfile:
for infilename in ['file1', 'file2', 'file3']:
with open(infilename) as infile:
outfile.write(infile.read())
答案 3 :(得分:0)
一个有趣的案例是通过向其添加类似文件来更新文件。然后,不必在此过程中创建新文件。在需要附加大文件的情况下,它特别有用。这是直接从python使用teminal命令行的一种可能性。
import subprocess32 as sub
with open("A.csv","a") as f:
f.flush()
sub.Popen(["cat","temp.csv"],stdout=f)
答案 4 :(得分:0)
size = 'ffprobe -v error -show_entries format=size -of default=noprint_wrappers=1:nokey=1 dump.mp4 > file'
proc = subprocess.Popen(shlex.split(size), shell=True)
time.sleep(1)
proc.terminate() #proc.kill() modify it by a suggestion
size = ""
with open('file', 'r') as infile:
for line in infile.readlines():
size += line.strip()
print(size)
os.remove('file')
当您使用子流程时,必须杀死该进程。这是一个示例。如果您没有终止该进程,文件将为空,您可以阅读没有。它可以在 Windows 上运行。我不能确保它可以在Unix上运行。