aboutsummaryrefslogtreecommitdiff
path: root/cat.1
diff options
context:
space:
mode:
Diffstat (limited to 'cat.1')
-rw-r--r--cat.146
1 files changed, 46 insertions, 0 deletions
diff --git a/cat.1 b/cat.1
new file mode 100644
index 0000000..bbf6bbd
--- /dev/null
+++ b/cat.1
@@ -0,0 +1,46 @@
+CAT(1) "fases core"
+
+# NAME
+
+cat - concatenate files to stdout
+
+# SYNOPSIS
+
+*cat* [*-u*] [*file*] ...
+
+# DESCRIPTION
+
+Concatenate files to standard output (stdout).
+With no file or when file is -, read and concatenate standard input
+to standard output.
+
+*-u*
+ Print unbuffered.
+
+# EXAMPLES
+
+*cat foobar*
+ Output foobar's contents to standard output.
+
+*cat*
+ Output standard input to standard output.
+
+*cat -u hello.c*
+ Output hello.c's contents unbuffered to standard output.
+
+*cat foo bar baz*
+ Output foo's contents, then bar's, then baz's to standard output.
+
+# AUTHOR
+
+Originally written by Ferass EL HAFIDI as part of the fases
+project. Part of the code is written by
+Leah Rowe.
+
+Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
+
+# COPYRIGHT
+
+Copyright (C) 2022 Ferass EL HAFIDI
+
+Copyright (C) 2022 Leah Rowe