我的任务是编写 ac 程序,该程序可以使用 fork 和 exec 在 $PATH 中列出的所有目录中搜索目录。我的问题是我如何从 $PATH 中获取路径,然后我可以在我的代码中使用 execl
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
int main(int argc, char* argv[]) {
int pid = 0;
for(int i = 0; i < argc; i++) {
if (pid = fork() != 0){
printf("Arg%d: %c\n", i, *argv[i]); // replace with exec ls -l <dir>/<arg>
return 0;
}
}
return 0;
}