ฉันพยายามทำความเข้าใจการใช้dup2
และdup
.
จากหน้าคน:
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).
เหตุใดฉันจึงต้องการการโทรจากระบบนั้น การทำซ้ำ file descriptor คืออะไร?
หากฉันมีตัวอธิบายไฟล์เหตุใดฉันจึงต้องการทำสำเนา
ฉันจะขอบคุณถ้าคุณสามารถอธิบายและให้ตัวอย่างที่dup2
/ dup
จำเป็น
ขอบคุณ
dup
หรือdup2
อย่างไร? คุณต้องโทรpipe(2)
จากนั้นจึงจะมีตัวอธิบายไฟล์ตัวใดตัวหนึ่งdup
เช่นSTDIN_FILENO