我有一个C / C ++程序,它接受一组参数并向命令行显示一组输出(对于我的研究)。
我想编写一个Python脚本来为不同的输入多次运行该程序并将输出写入文件。我打算用详尽的输入来运行程序。
但是,我没有任何使用Python编写脚本或编程的经验。所以,我想知道我是否可以从哪里开始。
作为一个例子,我想写一个脚本来做:
./program -flag1 [val1] -flag2 [val2] -arg1 -arg2 -arg3 ...
Append the output to Output.txt
./program -flag1 [val1] -flag2 [val2] -arg1 -arg2 -arg4 ...
Append the output to Output.txt
./program -flag1 [val1] -flag2 [val2] -arg1 -arg2 -arg5 ...
Append the output to Output.txt
...
...
./program -flag1 [val1] -flag2 [val2] -arg1000 -arg1000 -arg1000 ...
Append the output to Output.txt
编辑:我是通过命令行bash在Linux上运行程序。
EDIT2 SLN :只是为了将来可能是初学者的其他人,做类似的事情,解决方案如下所示。我剥去了只影响我案件的所有部分。
import subprocess
from subprocess import Popen, PIPE
for commands in listArgs:
# Build command through for loop in listArgs.
# Details are omitted.
cmd = ["./program", "-flag1", "val1", "-flag2", "val2", "-arg1", "-arg2", ... ]
# Open/Create the output file
outFile = open('/path/to/file/Output.txt', 'a+')
result = subprocess.Popen(cmd, stdout=subprocess.PIPE)
out = result.stdout.read()
outFile.write(out)
outFile.close()
答案 0 :(得分:1)
目前推荐的使用Python运行和控制可执行文件的方法是 subprocess 模块。您可以使用不同的参数,捕获标准输出,处理它,或只是重定向到任意文件。在这里查看文档https://docs.python.org/3.2/library/subprocess.html#module-subprocess
答案 1 :(得分:0)
我不确定这是否是您正在寻找的,但您可以使用python通过终端执行命令。例如
import os
os.system("echo 'hello world'")
这将执行终端命令>> echo 'hello world'