logo

utils

~/.local/bin tools and git-hooks git clone https://hacktivis.me/git/utils.git
commit: 642481087bb73d28b34f4d6076851fa175c7137a
parent 62f506db60f7aa20d7975211bddeffbb65073480
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 13 Feb 2022 00:29:58 +0100

bin/cat.1: Create

Diffstat:

Abin/cat.136++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+), 0 deletions(-)

diff --git a/bin/cat.1 b/bin/cat.1 @@ -0,0 +1,36 @@ +.\" Collection of Unix tools, comparable to coreutils +.\" Copyright 2017-2022 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me> +.\" SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only +.Dd 2022-02-13 +.Dt CAT 1 +.Os +.Sh NAME +.Nm cat +.Nd concatenate files +.Sh SYNOPSIS +.Nm +.Op Ar files ... +.Sh DESCRIPTION +.Nm +reads reach +.Ar file +in sequence and writes it on the standard output. +If no +.Ar file +is given, +.Nm +reads from the standard input. +.Sh EXIT STATUS +.Ex -std +.Sh STANDARDS +.Nm +is mostly compliant with the +.St -p1003.1-2008 +specification. +.Sh AUTHORS +.An Haelwenn (lanodan) Monnier Aq Mt contact@hacktivis.me +.Sh BUGS +.Nm +lacks the +.Fl u +option, this is mostly intended but it means a lack of unbuffered read/writes.