2014年9月20日土曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の9章(プロセスとシステムサービス: 限界を超える)、エクササイズ(p.409)をpythonで考えてみる。

エクササイズ(p.409)

コード(BBEdit, Emacs)

sample409.py

#!/usr/bin/env python3
#-*- coding: utf-8 -*-

import os

# エラーを確認
try:
    os.execl('/sbin/ifconf', '/sbin/ifconf')
except Exception:
    try:
        os.execlp('ipconf', 'ipconf')
    except Exception as err:
        print('ipconfigを実行できません:{0}'.format(err.strerror))

入出力結果(Terminal, IPython)

$ ./sample409.py
ipconfigを実行できません:No such file or directory
$

0 コメント:

コメントを投稿