summaryrefslogtreecommitdiffstats
path: root/man2/tee.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/tee.2')
-rw-r--r--man2/tee.218
1 files changed, 9 insertions, 9 deletions
diff --git a/man2/tee.2 b/man2/tee.2
index 8ed9a67a8..4fe7aeb9c 100644
--- a/man2/tee.2
+++ b/man2/tee.2
@@ -35,7 +35,7 @@ to the pipe referred to by the file descriptor
It does not consume the data that is duplicated from
.IR fd_in ;
therefore, that data can be copied by a subsequent
-.BR splice (2).
+.MR splice 2 .
.P
.I flags
is a bit mask that is composed by ORing together
@@ -45,24 +45,24 @@ zero or more of the following values:
Currently has no effect for
.BR tee ();
see
-.BR splice (2).
+.MR splice 2 .
.TP
.B SPLICE_F_NONBLOCK
Do not block on I/O; see
-.BR splice (2)
+.MR splice 2
for further details.
.TP
.B SPLICE_F_MORE
Currently has no effect for
.BR tee (),
but may be implemented in the future; see
-.BR splice (2).
+.MR splice 2 .
.TP
.B SPLICE_F_GIFT
Unused for
.BR tee ();
see
-.BR vmsplice (2).
+.MR vmsplice 2 .
.SH RETURN VALUE
Upon successful completion,
.BR tee ()
@@ -116,7 +116,7 @@ assigns data to the output by merely grabbing
a reference to the input.
.SH EXAMPLES
The example below implements a basic
-.BR tee (1)
+.MR tee 1
program using the
.BR tee ()
system call.
@@ -194,6 +194,6 @@ main(int argc, char *argv[])
.EE
.\" SRC END
.SH SEE ALSO
-.BR splice (2),
-.BR vmsplice (2),
-.BR pipe (7)
+.MR splice 2 ,
+.MR vmsplice 2 ,
+.MR pipe 7