Wrote manual
This commit is contained in:
parent
27d363704a
commit
eb065ffdbf
1 changed files with 28 additions and 0 deletions
28
tee.1
Normal file
28
tee.1
Normal file
|
@ -0,0 +1,28 @@
|
|||
.TH TEE 1
|
||||
.SH NAME
|
||||
tee \- write from stdin to file
|
||||
.SH SYNOPSIS
|
||||
.B tee
|
||||
[\fB\-ai\fR]
|
||||
[\fIfile\fR] ...
|
||||
.SH DESCRIPTION
|
||||
.B tee
|
||||
copies standard input to standard output and to any files given on the command
|
||||
line. It writes to files by default, clearing any existing files specified.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.BR \-a
|
||||
Append output to files, rather than clobbering existing files.
|
||||
.TP
|
||||
.BR \-i
|
||||
Ignore SIGINT (^C). If you use this, use Ctrl-D (^D) to send an
|
||||
EOF in order to exit!
|
||||
.SH AUTHOR
|
||||
Written by Kat.
|
||||
.SH COPYRIGHT
|
||||
Copyright (C) 2020 The FENIX Project
|
||||
.PP
|
||||
This software is free software. Feel free to modify it and/or pass
|
||||
it around.
|
||||
.PP
|
||||
This \fBtee\fR implementation is part of the fenutils package.
|
Loading…
Reference in a new issue