0

あるコマンドの出力を別のコマンドの入力にパイプすることに成功し、2 番目のコマンドの出力を画面に表示しました。

これを 3 つの連続したコマンドで実行したいと考えています。(実際には、実行時にプログラムに渡される N 個のコマンドでそれを実行したいと考えています。

これは、3 つのコマンドをまとめてパイプライン処理する試みです。

更新:最新の試みを反映するように質問を更新しました。

    #include <string.h>
    #include <fstream>
    #include <iostream>
    #include <unistd.h>
    #include <stdio.h>
    #include <sys/wait.h>
    #include <sys/types.h>
    using namespace std;

    int main(int argc, char * argv[])
    {
             pid_t pid;
        int pfd[2];
        char* prgname = NULL;
        if(pipe(pfd) == -1)
        {
                perror("error on pipe call");
                return(1);
        }
        for(int j = 0;j<numberOfCommands;j++)
        {
                cout<<commands[j]<<"_"<<endl;
        }
        pid = fork();
        if(pid == 0){//child process
                close(pfd[0]); //close read end of pipe
                dup2(pfd[1],1);//connect the pipes
                close(pfd[1]);//close extra file descriptors
                prgname = (char*)"dmesg"; //commands[0];//first command
                execlp(prgname, prgname, 0);//Load the program
        }
        else
        {
                int pfd2[2];
                if(pipe(pfd2) == -1)
                {
                        perror("error on pipe call 2");
                        return(1);
                }
                pid = fork();
                if(pid == 0)//child
                {
                        close(pfd[1]);
                        dup2(pfd[0],0);
                        close(pfd[0]);
                        close(pfd2[0]);
                        dup2(pfd2[1],1);
                        close(pfd2[1]);
                        prgname = (char*)"sort";
                        execlp(prgname,prgname,0);
                }
                else
                {
                close(pfd2[1]); //close the write end of the pipe
                dup2(pfd2[0],0);//connect the pipes
                close(pfd2[0]); //close extra file descriptor
                prgname = (char*)"more"; //commands[1];//now run the second command
                execlp(prgname, prgname, 0);//Load the program
                }
        }
        return 0;
}

簡単にするために、すべての値をハードコーディングしました。プログラムは「dmesg|more」の出力であるべきものを表示しますが、ソート部分を実行せずにフリーズします。左下にdmesgなどの物乞いが見えますが、それ以上は見れません。

何か案は?

4

1 に答える 1

2

pipe(2)1 つのパイプに対して 2 つのファイル記述子のみを提供します。3 番目のファイル記述子 ( pfd[2]) はジャンクであり、初期化されていません。3 つのコマンドを含むパイプラインを作成する場合は、pipe()2 回呼び出して 2 つのパイプを取得する必要があります。

于 2010-10-14T00:45:26.113 に答える