タイトルがややこしいかもしれませんので、説明させてください。プログラミングを練習するために簡単なシェルを作成しようとしています。コマンド、フォーク、実行ループの取得が機能しています。ただし、子プロセスがまだ実行されているときに押すCTRL-C
と、子プロセスではなくシェルが終了します(ただし、子プロセスは実行され続けます)。主な機能は次のとおりです。
int main()
{
dynarray *args; /* pointer to a dynamic array */
int bytes_read;
size_t nbytes = 0;
char *command;
pid_t pid;
printf("Enter command: ");
while ((bytes_read = getline(&command, &nbytes, stdin)) != -1) {
if (bytes_read == -1) {
perror("getline");
exit(EXIT_FAILURE);
}
pid = fork();
if (pid == -1) {
perror("fork");
exit(EXIT_FAILURE);
}
else if (pid == 0) { /* child process */
args = newdynarray();
char *arg = strtok(command, " \n");
while (arg != NULL) {
addstring(args, arg);
arg = strtok(NULL, " \n");
}
if (args->nval == 0) {
freedynarray(args);
continue;
}
addstring(args, NULL);
char *fullpath = find_executable(args->strings[0]);
if (fullpath == NULL) {
fprintf(stderr, "Couldn't find executable: %s\n", command);
exit(EXIT_FAILURE);
}
if (execv(fullpath, args->strings) == -1) {
perror("execv");
exit(EXIT_FAILURE);
}
} else {
int status;
waitpid(pid, &status, 0);
}
printf("Enter command: ");
}
return 0;
}
他の部分は関係ないと思うので含めませんでした。子プロセスが終了するまで stdin からのすべての入力をキャッチするにはどうすればよいですか?