为什么我的代码以退出代码退出:0,即使循环条件仍然有效?

Why does my code exit with exit code: 0 even though the loop condition is still valid?

我正在尝试同时使用 forkexecvp 到 运行 两个 shell 命令。我有两个问题,当我输入 mkdir folder1&mkdir folder2 时,它会创建一个名为 folder1 的文件夹和另一个名为 folder2? 的文件夹(问号包含在文件夹名称中)。另一个问题是执行完这两个命令后代码退出。

代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#define MAXLINE 80 /* The maximum length command */

int main(void) {
    char *args [MAXLINE / 2 + 1]; /* command line arguments */
    char *line = (char *) malloc((MAXLINE + 1) * sizeof (char));
    char *firstCommand = (char *) malloc((MAXLINE + 1) * sizeof (char));
    char *secondCommand = (char *) malloc((MAXLINE + 1) * sizeof (char));
    int shouldrun = 1; /* flag to determine when to exit program */
    pid_t pid;
    while (shouldrun) {
        printf("osh>");
        fflush(stdout);
        fgets(line, MAXLINE, stdin);
        if (strncmp(line, "exit", 4) == 0) {
            shouldrun = 0;
        } else {
            firstCommand = strsep(&line, "&");
            secondCommand = strsep(&line, "&");
            pid = fork();
            if (pid == 0) {
                // child
                if (secondCommand != NULL) {
                    char *token;
                    int n = 0;
                    do {
                        token = strsep(&secondCommand, " ");
                        args[n] = token;
                        n++;
                    } while (token != NULL);
                    execvp(args[0], args);
                }
            } else {
                // parent
                char *token;
                int n = 0;
                do {
                    token = strsep(&firstCommand, " ");
                    args[n] = token;
                    n++;
                } while (token != NULL);
                execvp(args[0], args);
            }
        }
    }
    return 0;
}

更新 1:

我试着按照凯文的回答。我正在尝试同时执行多个进程,例如ps&ls&who&date。我尝试了一种递归方法,它给了我相同的行为。这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#define MAXLINE 80 /* The maximum length command */

void execute(char *command) {
    char *args [MAXLINE / 2 + 1]; /* command line arguments */
    char *parentCommand = strsep(&command, "&");
    pid_t pid = fork();;
    if (pid == 0) {
        // child
        if (command != NULL) {
            execute(command);
        }
    } else {
        // parent
        char *token;
        int n = 0;
        do {
            token = strsep(&parentCommand, " ");
            args[n] = token;
            n++;
        } while (token != NULL);
        execvp(args[0], args);
    }
}

int main(void) {
    char *line = (char *) malloc((MAXLINE + 1) * sizeof (char));
    int shouldrun = 1; /* flag to determine when to exit program */
    while (shouldrun) {
        printf("osh>");
        fflush(stdout);
        fgets(line, MAXLINE, stdin);
        if (strncmp(line, "exit", 4) == 0) {
            shouldrun = 0;
        } else {
            execute(line);
        }
    }
    return 0;
}

关于为什么它不循环的问题,你调用了一次 fork 但调用了两次 execvp。如果成功,execvp不会return。没有什么会再次回到 运行 循环。您需要做的是为每个 execvp 调用一次 fork。我建议您将 forkexecvp 调用移至单独的函数:

void run_command(const char* command) {
    /* I suggest you also check for errors here */
    pid_t pid = fork();
    if (pid == 0) {
        /* get args, call execvp */
    }
}

/* in your loop */
run_command(firstCommand);
run_command(secondCommand);

关于第一个问题,您需要截断行中的 \n。关于第二个问题,你可以使用stdlib.h头文件中的system函数,它不会终止你的程序。