2 .\" Copyright (c) 1989, 1990, 1993
3 .\" The Regents of the University of California. All rights reserved.
5 .\" This code is derived from software contributed to Berkeley by
6 .\" the Institute of Electrical and Electronics Engineers, Inc.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)cat.1 8.3 (Berkeley) 5/2/95
33 .\" $FreeBSD: src/bin/cat/cat.1,v 1.25 2005/01/16 16:41:55 ru Exp $
40 .Nd concatenate and print files
48 utility reads files sequentially, writing them to the standard output.
51 operands are processed in command-line order.
58 reads from the standard input.
65 connects to it and then reads it until
69 domain binding capability available in
72 The options are as follows:
73 .Bl -tag -width indent
75 Number the non-blank output lines, starting at 1.
77 Display non-printing characters (see the
79 option), and display a dollar sign
81 at the end of each line.
83 Number the output lines, starting at 1.
85 Squeeze multiple adjacent empty lines, causing the output to be
88 Display non-printing characters (see the
90 option), and display tab characters as
93 Disable output buffering.
95 Display non-printing characters so they are visible.
96 Control characters print as
98 for control-X; the delete
99 character (octal 0177) prints as
102 characters (with the high bit set) are printed as
104 (for meta) followed by the character for the low 7 bits.
113 will print the contents of
115 to the standard output.
119 .Dl "cat file1 file2 > file3"
121 will sequentially print the contents of
129 if it already exists.
130 See the manual page for your shell (i.e.,
132 for more information on redirection.
136 .Dl "cat file1 - file2 - file3"
138 will print the contents of
140 print data it receives from the standard input until it receives an
143 character, print the contents of
145 read and output contents of the standard input again, then finally output
148 Note that if the standard input referred to a file, the second dash
149 on the command-line would have no effect, since the entire contents of the file
150 would have already been read and printed by
152 when it encountered the first
166 .%T "UNIX Style, or cat -v Considered Harmful"
167 .%J "USENIX Summer Conference Proceedings"
173 utility is compliant with the
179 are extensions to the specification.
186 designed and wrote the first man page.
187 It appears to have been
190 Because of the shell language mechanism used to perform output
191 redirection, the command
192 .Dq Li cat file1 file2 > file1
193 will cause the original data in file1 to be destroyed!
197 utility does not recognize multibyte characters when the