Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
prog.pyファイルで実行したいPythonプログラムがinputあり、その出力をに書き込みます output.txt。
prog.py
input
output.txt
ターミナルでは、次のように入力すると問題なく動作します。
$ python prog.py < input.py > output.txt
さて、これと同じことを行うメイクファイルが欲しいです。どうすればいいですか?