OSDN Git Service

LDP: Update original to LDP v3.76
[linuxjm/LDP_man-pages.git] / original / man2 / tee.2
index 27a739b..02cc0d9 100644 (file)
@@ -23,7 +23,7 @@
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.TH TEE 2 2014-07-08 "Linux" "Linux Programmer's Manual"
+.TH TEE 2 2014-12-31 "Linux" "Linux Programmer's Manual"
 .SH NAME
 tee \- duplicating pipe content
 .SH SYNOPSIS
@@ -134,11 +134,22 @@ under the covers,
 assigns data in the output by merely grabbing
 a reference to the input.
 .SH EXAMPLE
-The following example implements a basic
+The example below implements a basic
 .BR tee (1)
 program using the
 .BR tee ()
 system call.
+Here is an example of its use:
+
+.in +4n
+.nf
+$ \fBdate |./a.out out.log | cat\fP
+Tue Oct 28 10:06:00 CET 2014
+$ \fBcat out.log\fP
+Tue Oct 28 10:06:00 CET 2014
+.fi
+.in
+.SS Program source
 .nf
 
 #define _GNU_SOURCE
@@ -204,7 +215,7 @@ main(int argc, char *argv[])
 .BR splice (2),
 .BR vmsplice (2)
 .SH COLOPHON
-This page is part of release 3.75 of the Linux
+This page is part of release 3.76 of the Linux
 .I man-pages
 project.
 A description of the project,