2014年2月22日土曜日

開発環境

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

その他参考書籍

エクササイズ(p.409)

コード(BBEdit, Emacs)

sample409.c

#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>

int main(int argc, char *argv[])
{
    if (execl("/sbin/ifconfig", "/sbin/ifconfig", NULL) == -1) {
        if (execlp("ipconfig", "ipconfig", NULL) == -1) {
            fprintf(stderr, "ipconfigを実行出来ません:%s\n", strerror(errno));
            return (1);
        }
    }
    return (0);
}

Makefile

all: sample409

sample409: sample409.c
 cc -g -o sample409 sample409.c

clean:
 rm sample409

入出力結果(Terminal)

$ make && ./sample409
cc -g -o sample409 sample409.c
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
…
$

0 コメント:

コメントを投稿