aboutsummaryrefslogtreecommitdiff
path: root/man/cat.1
blob: f7a27e5ba3c55e4d246c793900ff5d3ef328a392 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.TH CAT 1 2022-07-02 Ferass'\ Base\ System.
.SH NAME
cat \- concatenate files to stdout
.SH SYNOPSIS
.B cat
.RB [ \-u ]
.RB [ FILE ] ...
.SH DESCRIPTION
Concatenate files to standard output (stdout).
.P
With no file or when file is -, read and concatenate standard input 
to standard output.
.TP
.B -u
Print unbuffered.
.P
.SH EXAMPLES
.TP
.B cat foobar
Output foobar's contents to standard output.
.TP
.B cat
Output standard input to standard output.
.TP
.B cat -u hello.c
Output hello.c's contents unbuffered to standard output. 
.TP
.B cat foo bar baz
Output foo's contents, then bar's, then baz's to standard output.
.SH AUTHOR
Originally written by Ferass EL HAFIDI as part of the fases 
project \- Ferass' Base System. Part of the code is written by 
Leah Rowe.
.P
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
.SH COPYRIGHT
.P
Copyright (C) 2022 Ferass EL HAFIDI
.P
Copyright (C) 2022 Leah Rowe