1

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

在终端中,如果我输入:

$ python prog.py < input.py > output.txt

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

4

1 回答 1

1

在您的 makefile 中只需:

all:
    python prog.py < input.py > output.txt
于 2012-12-07T03:20:24.337 回答