exit(1) 没有给我 1 作为退出值?

exit(1) does not give me 1 as an exit value?

为什么当我在 c

的函数中执行这段代码时
int Pandoc(char *file)
{

    //printf("Pandoc is trying to convert the file...\n");

    // Forking
    pid_t pid;
    pid = fork();

    if (pid == -1)
    {
        perror("Fork Error");
    }
    // child process because return value zero
    else if (pid == 0)
    {

        //printf("Hello from Child!\n");
        // Pandoc will run here.

        //calling pandoc
        // argv array for: ls -l
        // Just like in main, the argv array must be NULL terminated.
        // try to run ./a.out -x -y, it will work
        char *output = replaceWord(file, ".md", ".html");
        //checking if the file exists

        char *ls_args[] = {"pandoc", file, "-o", output, NULL};
        //                    ^
        //  use the name ls
        //  rather than the
        //  path to /bin/ls

        // Little explaination
        // The primary difference between execv and execvp is that with execv you have to provide the full path to the binary file (i.e., the program).
        // With execvp, you do not need to specify the full path because execvp will search the local environment variable PATH for the executable.
        if(file_exist(output)){execvp(ls_args[0], ls_args);}
        else
        {
            //Error Handeler
            fprintf(stdout, "pandoc should failed with exit 42\n");
            exit(42);
            printf( "hello\n");
        }
    }
    return 0;
}

我得到 0 作为 returned 值?

编辑:

编辑: 所以在这里我将 main 的 return 值更改为 5。 我上面的函数的退出值是 42(不知道为什么) 它给了我 5 作为输出.. 不知道发生了什么。 我应该提到我在我的代码中使用了 fork() ..也许这就是原因。

我认为我的退出关闭了子进程但主要进程继续..所以这就是为什么它在我的主要内部而不是退出进程中给我 returned 值。

您的子进程以异常值退出,但您的主进程始终以 0 退出,这就是决定 $?

如果你想让 $? 成为子进程的退出值,你必须 wait() 它,检索子进程的退出代码,然后用它退出你的主进程.