1.1; tee, revision 1.1, 81/07/01.
TEE -- Copy input to output and to named files.
usage: TEE pathname ...
FORMAT
TEE pathname ...
TEE copies its standard input to standard output and to the named
files. It is useful for saving the data being transmitted through
a pipeline.
ARGUMENTS
pathname
(required) Specify name of file to receive output. Multiple
pathnames are permitted.
EXAMPLE
$ FMT mary | TEE mary.clean | OS >mary.overstruck
This command line causes the file "mary" to be formatted with FMT.
The formatted text is written to the file "mary.clean" and also
piped to the OS command to produce overstruck output (for a line
printer) redirected into the file "mary.overstruck". Thus, you end
up with two output files: one with ASCII carriage control (mary.clean)
and one with FORTRAN carriage control (mary.overstruck).