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

时间:2017-07-14 11:33:32

标签: c fork execvp unistd.h

我正在尝试使用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;
}

2 个答案:

答案 0 :(得分:1)

对于您没有循环的问题,您只需拨打fork一次,但要拨打execvp两次。如果成功,execvp将不会返回。什么都没有回来再次运行循环。您需要做的是为每个fork致电execvp一次。我建议您将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);

答案 1 :(得分:0)

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