dup2
및 의 사용을 이해하려고합니다 dup
.
man 페이지에서 :
DESCRIPTION
dup and dup2 create a copy of the file descriptor oldfd.
After successful return of dup or dup2, the old and new descriptors may
be used interchangeably. They share locks, file position pointers and
flags; for example, if the file position is modified by using lseek on
one of the descriptors, the position is also changed for the other.
The two descriptors do not share the close-on-exec flag, however.
dup uses the lowest-numbered unused descriptor for the new descriptor.
dup2 makes newfd be the copy of oldfd, closing newfd first if necessary.
RETURN VALUE
dup and dup2 return the new descriptor, or -1 if an error occurred
(in which case, errno is set appropriately).
시스템 호출이 필요한 이유는 무엇입니까? 파일 설명자를 복제하는 용도는 무엇입니까?
파일 설명자가있는 경우 복사본을 만드는 이유는 무엇입니까?
dup2
/ dup
가 필요한 곳을 설명하고 예를 들어 주시면 감사하겠습니다 .
감사
dup
또는 없이 쉘의 배관 기능을 어떻게 구현dup2
하시겠습니까? 당신은 호출 할 필요가pipe(2)
파일 기술자 중 하나를 가지고 다음과dup
예에 -edSTDIN_FILENO