2026-09-20 操作系统lab1 Linux 进程:fork、execvp 与 wait 这篇文章通过一个简单的 C 程序,理解 Linux 中的进程、子进程,以及程序是怎样运行另一个命令的。 一、老师提供的完整代码 #include <stdio.h> #include <stdlib.h> #include <unistd.h>