xref: /original-bsd/bin/cat/cat.1 (revision 549425d7)
Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation,
advertising materials, and other materials related to such
distribution and use acknowledge that the software was developed
by the University of California, Berkeley. The name of the
University may not be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

@(#)cat.1 6.5 (Berkeley) 03/15/89

CAT 1 ""
C 1
NAME
cat - concatenate and print files
SYNOPSIS
cat [-benstuv] [-] [file ...]
DESCRIPTION
The cat utility reads files sequentially, writing them to the standard output. The file operands are processed in command line order. A single dash represents standard input.

The options are as follows:

-b Implies the -n option but doesn't number blank lines.

-e Implies the -v option, and displays a dollar sign (``$'') at the end of each line as well.

-n Number the output lines, starting at 1.

-s Squeeze multiple adjacent empty lines, causing the output to be single spaced.

-t Implies the -v option, and displays tab characters as ``^I'' as well.

-u The -u option guarantees that the output is unbuffered.

-v Displays non-printing characters so they are visible. Control characters print line ``^X'' for control-X; the delete character (octal 0177) prints as ``^?''. Non-ascii characters (with the high bit set) are printed as ``M-'' (for meta) followed by the character for the low 7 bits.

The command ``cat file1 file2 > file3'' concatenates the contents of file1 and file2 and places the result in file3.

Because of the shell language mechanism used to perform output redirection, the command ``cat file1 file 2 > file1'' will cause the original data in file1 to be destroyed!

"SEE ALSO"
head(1), more(1), pr(1), tail(1)

Rob Pike, ``UNIX Style, or cat -v Considered Harmful'' USENIX Summer Conference Proceedings, 1983.