qfedu-linux-advanced-level/day4/homework/h7.c

7 lines
252 B
C
Raw Permalink Normal View History

2023-08-18 01:09:47 +08:00
// 创建父子进程, 在父进程中输入命令,在子进程中执行,并将执行结果发送给父进程,父进程进行打印输出。
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>