파이프를 사용하여 파일 내용을 표시하는 방법은 무엇입니까?

파이프를 사용하여 파일 내용을 표시하는 방법은 무엇입니까?

텍스트 파일이 있고 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);
}

그러면 작업이 완료됩니다. 하지만 이 연습의 요점이 무엇인지 잘 모르겠습니다.

관련 정보