首页 > 解决方案 > 在 C 中管道两个 shell 命令

问题描述

我正在尝试grep -o colour colourfile.txt | wc -w > newfile.txt通过 C 中的程序执行,而不是使用命令行。

这是我到目前为止所拥有的:

#include <stdlib.h>
#include <unistd.h>

int main (void) {
    int fd[2];

    pipe(fd);

    if (fork()) {
        // Child process
        dup2(fd[0], 0); // wc reads from the pipe
        close(fd[0]);
        close(fd[1]);
        execlp("wc", "wc", "-w", ">", "newfile.txt", NULL);
    } else {
        // Parent process
        dup2(fd[1], 1); // grep writes to the pipe
        close(fd[0]);
        close(fd[1]);
        execlp("grep", "grep", "-o", "colour", "colourfile.txt", NULL);
    }
    exit(EXIT_FAILURE);
}

标签: cshellpipefork

解决方案


  1. if (fork()) {表示parent process不是child process,请参阅http://man7.org/linux/man-pages/man2/fork.2.html
  2. 你应该处理>类似的|使用open()

以下code可以工作:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>

int main (void) {
  int pipefd[2];
  pipe(pipefd);

  if (fork()) {
    // Child process
    dup2(pipefd[0], 0); // wc reads from the pipe
    close(pipefd[0]);
    close(pipefd[1]);
    int fd = open("newfile.txt", O_CREAT|O_TRUNC|O_WRONLY, S_IRUSR|S_IWUSR);
    dup2(fd, 1);
    close(fd);
    execlp("wc", "wc", "-w", NULL);
  } else {
    // Parent process
    dup2(pipefd[1], 1); // grep writes to the pipe
    close(pipefd[0]);
    close(pipefd[1]);
    execlp("grep", "grep", "-o", "colour", "colourfile.txt", NULL);
  }
  exit(EXIT_FAILURE);
}

推荐阅读