8.17 commands -- コマンド実行ユーティリティ

Unixプラットフォームで利用できます。

commandsは、システムへコマンド文字列を渡して実行する os.popen()のラッパー関数を含んでいるモジュールです。 外部で実行したコマンドの結果や、その終了ステータスを扱います。

commandsモジュールは以下の関数を定義しています。

getstatusoutput( cmd)
文字列cmdos.popen()を使いシェル上で実行し、 タプル(status, output)を返します。 実際には{ cmd ; } 2>&1と実行されるため、 標準出力とエラー出力が混合されます。 また、出力の最後の改行文字は取り除かれます。 コマンドの終了ステータスはC言語関数のwait()の規則に従って 解釈することができます。

getoutput( cmd)
getstatusoutput()に似ていますが、 終了ステータスは無視され、コマンドの出力のみを返します。

getstatus( file)
"ls -ld file"の出力を文字列で返します。 この関数はgetoutput()を使い、引数内の バックスラッシュ記号「」とドル記号「$」を適切にエスケープします。

例:

>>> 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'

ご意見やご指摘をお寄せになりたい方は、 このドキュメントについて... をご覧ください。