RS: fix for fix
[minix.git] / man / man1 / tee.1
blob6f01f199db079e56cc28a5e69ec2b3224f3b940a
1 .TH TEE 1
2 .SH NAME
3 tee \- divert stdin to a file
4 .SH SYNOPSIS
5 \fBtee\fR [\fB\-ai\fR] \fIfile\fR ...\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-a
20 # Append to the files, rather than overwriting
21 .TP 5
22 .B \-i
23 # Ignore interrupts
24 .SH EXAMPLES
25 .TP 20
26 .B cat file1 file2 | tee x
27 # Save and display two files
28 .TP 20
29 .B pr file | tee x | lp
30 # Save the output of \fIpr\fP on \fIx\fP
31 .SH DESCRIPTION
32 .PP
33 .I Tee
34 copies \fIstdin\fR to standard output.
35 It also makes copies on all the files listed as arguments.
36 .SH "SEE ALSO"
37 .BR cat (1).