我是 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;
}