我正在实现一个shell。
当尝试除更改目录以外的命令时,126
运行,子进程终止并创建一个新子进程。当我更改目录时,子节点不会终止并创建一个新子节点。以下是我的代码示例:
execvp()
for(;;) {
printf("bash: ");
parse();
...
pid_t pid = fork()
if (pid == 0)
if (!strcmp(line[0], "cd"))
if (!line[1]) (void) chdir(getenv("HOME"));
else (void) chdir(line[1]);
else execvp(line[0], line);
...
if (pid > 0) {
while (pid == wait(NULL));
printf("%d terminated.\n", pid);
}
}
正常运行,但我必须cd ../; ls;
两次才能结束该计划。
但是,如果我管道相同的信息(即。Ctrl+D
),它会正确运行一次,终止孩子,再次运行,除了原件直接,然后终止最后一个孩子。
答案 0 :(得分:5)
cd
,shell本身应该更改其当前目录(这是内部命令的属性:修改shell本身的进程)。
(primitve)shell应该如下所示:
for(;;) {
printf("bash: ");
parse();
// realize internal commands (here "cd")
if (!strcmp(line[0], "cd")) {
if (!line[1]) (void) chdir(getenv("HOME"));
else (void) chdir(line[1]);
continue; // jump back to read another command
}
// realize external commands
pid_t pid = fork()
if (pid == 0) {
execvp(line[0], line);
exit(EXIT_FAILURE); // wrong exec
}
// synchro on child
if (pid > 0) {
while (pid == wait(NULL));
printf("%d terminated.\n", pid);
}
}