Removed definition "LIB= rpc". We want libc.a to contain librpc.a, not
[unix-history] / .ref-386BSD-0.1-patchkit / usr / othersrc / public / shellutils-1.6 / shellutils-1.6 / man / tee.1
CommitLineData
0cfff12b
WJ
1.TH TEE 1L \" -*- nroff -*-
2.SH NAME
3tee \- read from standard input and write to standard output and files
4.SH SYNOPSIS
5.B tee
6[\-ai] [\-\-append] [\-\-ignore-interrupts] [file...]
7.SH DESCRIPTION
8This manual page
9documents the GNU version of
10.BR tee .
11The
12.B tee
13command copies the standard input to the standard output and any
14files given as arguments.
15.P
16If a file being written to does not already exist, it is created. If
17a file being written to already exists, the data it previously
18contained is overwritten unless the
19.I \-a
20option is used.
21.SS OPTIONS
22.TP
23.I \-a, \-\-append
24Append the standard input to the given files rather than overwriting them.
25.TP
26.I \-i, \-\-ignore-interrupts
27Ignore interrupt signals.
28.PP
29The long-named options can be introduced with `+' as well as `\-\-',
30for compatibility with previous releases. Eventually support for `+'
31will be removed, because it is incompatible with the POSIX.2 standard.