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 .\" 3. All advertising materials mentioning features or use of this software
17 .\" must display the following acknowledgement:
18 .\" This product includes software developed by the University of
19 .\" California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\" may be used to endorse or promote products derived from this software
22 .\" without specific prior written permission.
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" @(#)cat.1 8.3 (Berkeley) 5/2/95
37 .\" $FreeBSD: src/bin/cat/cat.1,v 1.27 2006/12/23 09:25:23 ru Exp $
38 .\" $DragonFly: src/bin/cat/cat.1,v 1.6 2007/02/04 21:08:28 pavalos Exp $
45 .Nd concatenate and print files
53 utility reads files sequentially, writing them to the standard output.
56 operands are processed in command-line order.
63 reads from the standard input.
70 connects to it and then reads it until
74 domain binding capability available in
77 The options are as follows:
78 .Bl -tag -width indent
80 Number the non-empty output lines, starting at 1.
82 Display non-printing characters (see the
84 option), and display a dollar sign
86 at the end of each line.
88 Number the output lines, starting at 1.
90 Squeeze multiple adjacent empty lines, causing the output to be
93 Display non-printing characters (see the
95 option), and display tab characters as
98 Disable output buffering.
100 Display non-printing characters so they are visible.
101 Control characters print as
103 for control-X; the delete
104 character (octal 0177) prints as
107 characters (with the high bit set) are printed as
109 (for meta) followed by the character for the low 7 bits.
118 will print the contents of
120 to the standard output.
124 .Dl "cat file1 file2 > file3"
126 will sequentially print the contents of
134 if it already exists.
135 See the manual page for your shell (i.e.,
137 for more information on redirection.
141 .Dl "cat file1 - file2 - file3"
143 will print the contents of
145 print data it receives from the standard input until it receives an
148 character, print the contents of
150 read and output contents of the standard input again, then finally output
153 Note that if the standard input referred to a file, the second dash
154 on the command-line would have no effect, since the entire contents of the file
155 would have already been read and printed by
157 when it encountered the first
171 .%T "UNIX Style, or cat -v Considered Harmful"
172 .%J "USENIX Summer Conference Proceedings"
185 are extensions to the specification.
192 designed and wrote the first man page.
193 It appears to have been
196 Because of the shell language mechanism used to perform output
197 redirection, the command
198 .Dq Li cat file1 file2 > file1
199 will cause the original data in
205 utility does not recognize multibyte characters when the