Sun Microsystems, Inc. gratefully acknowledges The Open Group for
permission to reproduce portions of its copyrighted documentation.
Original documentation from The Open Group can be obtained online at
http://www.opengroup.org/bookstore/.
The Institute of Electrical and Electronics Engineers and The Open
Group, have given us permission to reprint portions of their
documentation.
In the following statement, the phrase ``this text'' refers to portions
of the system documentation.
Portions of this text are reprinted and reproduced in electronic form
in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
Standard for Information Technology -- Portable Operating System
Interface (POSIX), The Open Group Base Specifications Issue 6,
Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
Engineers, Inc and The Open Group. In the event of any discrepancy
between these versions and the original IEEE and The Open Group
Standard, the original IEEE and The Open Group Standard is the referee
document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html.
This notice shall appear on any product containing this material.
The contents of this file are subject to the terms of the
Common Development and Distribution License (the "License").
You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
or http://www.opensolaris.org/os/licensing.
See the License for the specific language governing permissions
and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each
file and include the License file at usr/src/OPENSOLARIS.LICENSE.
If applicable, add the following below this CDDL HEADER, with the
fields enclosed by brackets "[]" replaced with your own identifying
information: Portions Copyright [yyyy] [name of copyright owner]
Copyright 1989 AT&T
Portions Copyright (c) 1992, X/Open Company Limited All Rights Reserved
Portions Copyright (c) 1982-2007 AT&T Knowledge Ventures
Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved
/usr/bin/cat [-nbsuvet] [file...]
cat [-bdenstuvABDEST] [file...]
example% cat file
prints file on your terminal, and:
example% cat file1 file2 >file3
concatenates file1 and file2, and writes the results in file3. If no input file is given, cat reads from the standard input file.
Number the lines, as -n, but omit the line numbers from blank lines.
Precede each line output with its line number.
cat is silent about non-existent files.
The output is not buffered. Buffered output is the default.
Non-printing characters, with the exception of tabs, NEWLINEs and form feeds, are printed visibly. ASCII control characters (octal 000 - 037) are printed as ^n, where n is the corresponding ASCII character in the range octal 100 - 137 (@, A, B, C, ..., X, Y, Z, [, \e, ], ^, and _); the DEL character (octal 0177) is printed ^?. Other non-printable characters are printed as M-x, where x is the ASCII character specified by the low-order seven bits.
When used with the -v option, the following options can be used: -e
A $ character is printed at the end of each line, prior to the NEWLINE.
Tabs are printed as ^Is and form feeds to be printed as ^Ls.
The -e and -t options are ignored if the -v option is not specified.
Number lines as with -n but omit line numbers from blank lines.
Open input files in text mode. Removes RETURNs in front of NEWLINEs on some systems.
Equivalent to -vE.
Insert a line number at the beginning of each line.
Equivalent to -S for att universe and -B otherwise.
Equivalent to -vT.
Do not delay the output by buffering.
Cause non-printing characters (with the exception of TABs, NEWLINEs, and form feeds) to be output as printable character sequences. ASCII control characters are printed as ^n, where n is the corresponding ASCII character in the range octal 100-137. The DEL character (octal 0177) is copied as ^?. Other non-printable characters are copied as M-x where x is the ASCII character specified by the low-order seven bits. Multi-byte characters in the current locale are treated as printable characters.
Equivalent to -vET.
Replace multiple adjacent NEWLINE characters with one NEWLINE.
Open output files in text mode. Insert RETURNs in front of NEWLINEs on some systems.
Insert a $ before each NEWLINE.
cat is silent about non-existent files.
Copies TABs as ^I and form feeds as ^L.
A path name of an input file. If no file is specified, the standard input is used. If file is \|-\|, cat reads from the standard input at that point in the sequence. cat does not close and reopen standard input when it is referenced in this way, but accepts multiple occurrences of \|-\| as file.
The following command writes the contents of the file myfile to standard output:
example% cat myfile
Example 2 Concatenating Two files into One
The following command concatenates the files doc1 and doc2 and writes the result to doc.all.
example% cat doc1 doc2 > doc.all
Example 3 Concatenating Two Arbitrary Pieces of Input with a Single Invocation
When standard input is a terminal, the following command gets two arbitrary pieces of input from the terminal with a single invocation of cat:
example% cat start - middle - end > file
If standard input is a regular file,
example% cat start - middle - end > file
would be equivalent to the following command:
example% cat start - middle /dev/null end > file
because the entire contents of the file would be consumed by cat the first time \|-\| was used as a file operand and an end-of-file condition would be detected immediately when \|-\| was referenced the second time.
All input files were output successfully.
An error occurred.
ATTRIBUTE TYPE ATTRIBUTE VALUE |
CSI Enabled |
Interface Stability Committed |
Standard See standards(7). |
ATTRIBUTE TYPE ATTRIBUTE VALUE |
Interface Stability See below. |
The ksh93 built-in binding to /bin and /usr/bin is Volatile. The built-in interfaces are Uncommitted.
example% cat filename1 filename2 > filename1
causes the original data in filename1 to be lost.