http://docs.python.org/library/cmd.htmlをご覧ください。
コード例:
import cmd
import sys
class Prompt(cmd.Cmd):
def __init__(self, stufflist=[]):
cmd.Cmd.__init__(self)
self.prompt = '>>> '
self.stufflist = stufflist
print "Hello, I am your new commandline prompt! 'help' yourself!"
def do_quit(self, arg):
sys.exit(0)
def do_print_stuff(self, arg):
for s in self.stufflist:
print s
p = Prompt(sys.argv[1:])
p.cmdloop()
テスト例:
$ python cmdtest.py foo bar
Hello, I am your new commandline prompt! 'help' yourself!
>>> help
Undocumented commands:
======================
help print_stuff quit
>>> print_stuff
foo
bar
>>> quit
出力をファイルに保存するために、たとえば次のクラスを使用して、通常 stdout に出力されるものもファイルに書き込むことができます。
class Tee(object):
def __init__(self, out1, out2):
self.out1 = out1
self.out2 = out2
def write(self, s):
self.out1.write(s)
self.out2.write(s)
def flush(self):
self.out1.flush()
self.out2.flush()
次のように使用できます。
with open('cmdtest.out', 'w') as f:
# write stdout to file and stdout
t = Tee(f, sys.stdout)
sys.stdout = t
stdin 経由で読み込まれたコマンドがこの出力に表示されないことが問題ですが、これは簡単に解決できると思います。