diff --git a/man/syscall/dup2.html b/man/syscall/dup2.html index 8392a86..2257de3 100644 --- a/man/syscall/dup2.html +++ b/man/syscall/dup2.html @@ -55,9 +55,9 @@ Standard C Library (libc, -lc)
-dup2 clones the file handle oldfd onto the file -handle newfd. If newfd names an already-open file, -that file is closed. +dup2 clones the file handle identifed by file descriptor oldfd +onto the file handle identified by newfd. If newfd +names an already-open file, that file is closed.
@@ -74,8 +74,8 @@ dup2 is most commonly used to relocate opened files onto
-Both filehandles must be non-negative, and, if applicable, smaller -than the maximum allowed file handle number. +Both file descriptors must be non-negative, and, if applicable, +smaller than the maximum allowed file handle number.
@@ -116,9 +116,9 @@ here.