使用makefile将Python输出写入文件

时间:2012-12-07 03:13:06

标签: python makefile output file-io

我有一个Python程序prog.py,我希望在文件input上运行,然后将其输出写入output.txt

在终端中,如果我键入:

,这样可以正常工作
$ python prog.py < input.py > output.txt

现在,我想要一个makefile来做同样的事情。我该怎么做?

1 个答案:

答案 0 :(得分:1)

在你的makefile中只需:

all:
    python prog.py < input.py > output.txt