我正在尝试以排序方式运行ls -l
所以排序可以应用于ls -l
但是当我运行它时,它不会给出相同的输出
作为ls -l |分类
我不确定为什么我能理解管道,双面胶,叉形,关闭的位置,但仍然感到困惑
关于如何应用它们使这项工作

  int pipe1[2];
  // will hold the ids of our forks
  pid_t pid1;
  // will hold the ids of our forks
  pid_t pid2;

  pipe(pipe1);

  // call our child process
  pid1 = fork();

  if (pid1 == 0)
  {
    // dealocate the 1 of
    close(1);
    // duplicate the write end
    dup(pipe1[1]);
    // close the read end
    close(pipe1[0]);
    // close the write end
    close(pipe1[1]);

    printf("child1 executing ls \n");
    execl("/bin/ls", "ls", 0, 0);
    perror("execl error");
  }
  else
  {
    wait(&pid1);

    pid2 = fork();

    if (pid2 == 0)
    {
      close(0);
      dup(pipe1[0]);
      close(pipe1[0]);
      close(pipe1[1]);

      printf("child2 executing sort \n");
      execl("/bin/sort", "sort",0, 0);
      perror("execl error");
    }
    else
    {
      wait(0); //wait for children
    }
  }
}

最佳答案

将以下内容添加到else {[here] wait(0); }

close(pipe1[0]);
close(pipe1[1]) ;

关于c - 将一个子进程的输出作为另一子进程的输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49605351/

10-13 09:19