我是C编程新手。我正在尝试使用fork()
,exec()
和waitpid()
命令运行由用户指定的路径给出的程序。我一直试图让它正常运行几个小时,我不断收到错误我不知道如何解决问题,一旦我解决了一个错误,就会出现新问题。我想知道是否有人可以帮助我理解为什么我的实施不能顺利进行?
非常感谢
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void) {
char command1[256], command2[256], path[556];
printf("# ");
scanf("%s", command1);
scanf("%s", command2);
scanf("%s", path);
if(strcmp(command1,"quit")==0)
exit(0);
else if(strcmp(command1, "run")==0 && strcmp(command2, "command")==0){
printf("%s", path);
pid_t process;
process = fork();
//fork error
if (process < 0){
perror("fork");
exit(0);
}
else if (process > 0){ //this is the parent process
execl(path, "sh" , "-c", ":ls -l *.c", 0);
}
else {//this is the child process
waitpid(process); //waits until the program terminates
}
}
return 0;
}
答案 0 :(得分:2)
在我看来,你有交换的东西。使用fork / exec,您通常在子进程中执行exec,在父进程中执行waitpid。