【C语言】使用dup2,execlp,实现保存系统命令结果到文件

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(void)
{
    int fd;
  //创建文件,获取文件描述符 fd
= open("ps.out",O_WRONLY|O_CREAT|O_TRUNC,0644); if(fd < 0) { perror("open ps.out error"); exit(1); }
  //将输出屏幕内容保存到fd文件 dup2(fd,STDOUT_FILENO);
  //执行系统命令 execlp(
"ps","ps","ax",NULL); perror("execlp error"); return 0; }

 

posted @ 2022-08-16 11:08  老年新手工程师  阅读(97)  评论(0编辑  收藏  举报