commandsモジュールは、システムコマンドを文字列として受け取り そのコマンドが生成する出力とオプションで終了ステータスを返す os.popen()に対するラッパー関数を含んでいます。
commandsモジュールはos.popen()をサポートするシステム (現在のところUnix)のみで利用できます。このモジュールは以下の関数を定義 しています。
例:
>>> import commands >>> commands.getstatusoutput('ls /bin/ls') (0, '/bin/ls') >>> commands.getstatusoutput('cat /bin/junk') (256, 'cat: /bin/junk: No such file or directory') >>> commands.getstatusoutput('/bin/junk') (256, 'sh: /bin/junk: not found') >>> commands.getoutput('ls /bin/ls') '/bin/ls' >>> commands.getstatus('/bin/ls') '-rwxr-xr-x 1 root 13352 Oct 14 1994 /bin/ls'
guido@python.org