0

私はCプログラミングに不慣れです。、、、およびコマンドを使用してfork()、ユーザーが指定したパスで指定されたプログラムを実行しようとしています。私はこれを何時間も正しく実行しようとしてきましたが、エラーが発生し続けます。トラブルシューティングの方法がわかりません。1つのエラーを解決するとすぐに、新しいエラーが発生します。誰かが私の実装がスムーズに機能しない理由を理解するのを手伝ってくれるかどうか疑問に思いましたか?exec()waitpid()

どうもありがとう

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


int main(void)  {
    char command1[256], command2[256], path[556];
    printf("# ");
    scanf("%s", command1);
    scanf("%s", command2);
    scanf("%s", path);
    if(strcmp(command1,"quit")==0)
        exit(0);
    else if(strcmp(command1, "run")==0 && strcmp(command2, "command")==0){

            printf("%s", path);

            pid_t process;

            process = fork();

            //fork error
            if (process < 0){
               perror("fork");
               exit(0);
            }
            else if (process > 0){  //this is the parent process
               execl(path, "sh" , "-c", ":ls -l *.c", 0);
            }
            else {//this is the child process
               waitpid(process); //waits until the program terminates 
            }

    }




return 0;

}
4

1 に答える 1

2

あなたが物事を交換しているように私には見えます。fork / execを使用すると、通常、子プロセスでexecを実行し、親プロセスでwaitpidを実行します。

于 2013-02-08T23:22:34.593 に答える