logo

utils-std

Collection of commonly available Unix tools
commit: 313c1328fbd46aa618edd36d8860e5727b5f36d7
parent c1e0362f779e8f1a26a6a3e9162e2ed33cdc57a7
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat, 16 Mar 2024 21:59:41 +0100

cmd/tee.1: new

Diffstat:

Acmd/tee.135+++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+), 0 deletions(-)

diff --git a/cmd/tee.1 b/cmd/tee.1 @@ -0,0 +1,35 @@ +.\" utils-std: Collection of commonly available Unix tools +.\" Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me> +.\" SPDX-License-Identifier: MPL-2.0 +.Dd 2024-03-16 +.Dt TEE 1 +.Os +.Sh NAME +.Nm tee +.Nd duplicate standard input +.Sh SYNOPSIS +.Nm +.Op Fl a +.Op Fl i +.Op Ar file ... +.Sh DESCRIPTION +.Nm +copies standard input to standard output and to each given +.Ar file +. +.Sh OPTIONS +.Bl -tag -width Ds +.It Fl a +Append to the files instead of overwriting +.It Fl i +Ignore SIGINT +.El +.Sh EXIT STATUS +.Ex -std +.Sh STANDARDS +.Nm +should be compliant with the +.St -p1003.1-2008 +specification. +.Sh AUTHORS +.An Haelwenn (lanodan) Monnier Aq Mt contact@hacktivis.me