Chinaunix首页 | 论坛 | 博客
  • 博客访问: 751739
  • 博文数量: 130
  • 博客积分: 2951
  • 博客等级: 少校
  • 技术积分: 1875
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-04 18:32
文章分类

全部博文(130)

文章存档

2013年(1)

2012年(129)

分类: C/C++

2012-10-29 13:14:02

fork,在子进程中重定向输出,然后执行shell程序

  1. if( (pid = fork() ) == -1 ){
  2.         perror("fork"); exit(1);
  3.     }
  4.     /* child does the work */
  5.     if ( pid == 0 ){
  6.         /* close then open */
  7.         close(1);
  8.         if ( open(file,O_WRONLY|O_CREAT|O_APPEND,DFLMODE) != 1 )
  9.             perror(file);
  10.         else {
  11.             execlp( "who", "who", NULL );    /* and run    */
  12.             perror("execlp");
  13.         }
  14.         exit(1);
  15.     }
  16.     /* parent waits then reports */
  17.     if ( pid != 0 ){
  18.         wait(NULL);
  19.         printf("Done running who. results in %s\n", file);
  20.     }


阅读(2451) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~