2014年12月31日水曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の9章(プロセスとシステムサービス: 限界を超える)、コードマグネット(p.399)を解いてみる。

その他参考書籍

コードマグネット(p.399)

コード(BBEdit, Emacs)

sample399.c

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

char* now() {
  time_t t;
  time (&t);
  return asctime(localtime (&t));
}

int main() {
  char comment[80];
  char *cmd;
  fgets(comment, 80, stdin);
  asprintf(&cmd, "echo '%s %s' >> reports.log", comment, now());
  system(cmd);
  free(cmd);
}

入出力結果(Terminal)

$ crun.sh sample399
...
first
$ cat reports.log 
first
 Wed Dec 31 13:39:30 2014

$ ./sample399
second
$ cat reports.log 
first
 Wed Dec 31 13:39:30 2014

second
 Wed Dec 31 13:39:39 2014

$ 

0 コメント:

コメントを投稿