file descriptor1 [Unix] 파이프(pipe) 시스템 콜 - pipe() 없이 pipe 구현하기 1. man 2 pipe Prototype: int pipe(int fildes[2]); Description: 단방향 데이터 흐름을 만들어주는 파이프를 생성한다. 처음 fd는 read end에, 두번째 fd는 write end에 연결된다. 즉, filedes[1]에 데이터를 쓰면 filedes[0]에 나타난다. 이는 프로그램간의 데이터 통신을 구성할 수 있게 해준다. 이와 같이 STDOUT과 STDIN은 하나의 pipe로 연결되어 있다는 것을 알 수 있다. One of the most significant consequences of pipes in Unix is that Unix programs, whenever possible, are designed to read from standard inpu.. 2021. 5. 29. 이전 1 다음