如何使用管道显示文件内容?

如何使用管道显示文件内容?

我有一个文本文件,我应该在 C 程序中使用管道显示其内容。我做了类似的东西,但不完全是我需要的。

#include <unistd.h>

#define MSGSIZE 16

char *msg1 = "hello, world #1";
char *msg2 = "hello, world #2";
char *msg3 = "hello, world #3";

int main() {
  char inbuf[MSGSIZE];

  int p[2], i;

  if (pipe(p) < 0)
    exit(1);

  /* continued */
  /* write pipe */

  write(p[1], msg1, MSGSIZE);
  write(p[1], msg2, MSGSIZE);
  write(p[1], msg3, MSGSIZE);

  for (i = 0; i < 3; i++) {
    /* read pipe */
    read(p[0], inbuf, MSGSIZE);
    printf("% s\n", inbuf);
  }
  return 0;
}

在这里我给出了我想要显示的消息。我真的不知道如何对文件执行此操作。

答案1

#include <unistd.h>
#include <fcntl.h>

#define MSGSIZE 1024

int main() {
  char inbuf[MSGSIZE];

  int n, fd, p[2], i;

  if ((fd=open("/etc/passwd", O_RDONLY))<0)
    exit(2);
  if (pipe(p) < 0)
    exit(1);

  /* continued */
  /* write pipe */

  while ((n=read(fd,inbuf,MSGSIZE))>0)
      write(p[1], inbuf, n);
  close(p[1]);

  while ((n=read(p[0],inbuf,MSGSIZE))>0)
    write(1,inbuf,n);

  exit(0);
}

这样就可以完成工作了。但我不确定这个练习的意义是什么。

相关内容