view usr/src/man/man1/print.1 @ 23918:f3c8f3a2a25c

13404 man page spelling errors Reviewed by: Ryan Zezeski <ryan@oxide.computer> Reviewed by: Robert Mustacchi <rm@fingolfin.org> Approved by: Richard Lowe <richlowe@richlowe.net>
author Peter Tribble <peter.tribble@gmail.com>
date Thu, 31 Dec 2020 10:47:42 +0000
parents 5b2854ecc12d
children
line wrap: on
line source

'\" te
.\" Copyright (c) 2008 Sun Microsystems, Inc. - All Rights Reserved.
.\" Copyright 1989 AT&T
.\" Portions Copyright (c) 1982-2007 AT&T Knowledge Ventures
.\" 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]
.TH PRINT 1 "December 28, 2020"
.SH NAME
print \- shell built-in function to output characters to the screen or window
.SH SYNOPSIS
.SS "ksh"
.nf
\fBprint\fR [\fB-Rnprsu\fR [\fIn\fR]] [\fIarg\fR]...
.fi

.SS "ksh93"
.nf
\fBprint\fR [\fB-Renprs\fR] [\fB-f\fR \fIformat\fR] [\fB-u\fR \fIfd\fR] [\fIstring\fR...]
.fi

.SH DESCRIPTION
.SS "ksh"
The shell output mechanism. When no options are specified, or when an option
followed by \fB\&'\fR a \fB\(mi\fR is specified, or when just \fB-\fR is
specified, the arguments are printed on standard output as described by
\fBecho\fR(1).
.SS "ksh93"
By default, \fBprint\fR writes each string operand to standard output and
appends a NEWLINE character.
.sp
.LP
Unless, the \fB-r\fR, \fB-R\fR, or \fB-f\fR option is specified, each \fB\e\fR
character in each string operand is processed specially as follows:
.sp
.ne 2
.na
\fB\fB\ea\fR\fR
.ad
.RS 8n
Alert character.
.RE

.sp
.ne 2
.na
\fB\fB\eb\fR\fR
.ad
.RS 8n
Backspace character.
.RE

.sp
.ne 2
.na
\fB\fB\ec\fR\fR
.ad
.RS 8n
Terminate output without appending NEWLINE. The remaining string operands are
ignored.
.RE

.sp
.ne 2
.na
\fB\fB\eE\fR\fR
.ad
.RS 8n
Escape character (\fBASCII\fR octal \fB033\fR).
.RE

.sp
.ne 2
.na
\fB\fB\ef\fR\fR
.ad
.RS 8n
FORM FEED character.
.RE

.sp
.ne 2
.na
\fB\fB\en\fR\fR
.ad
.RS 8n
NEWLINE character.
.RE

.sp
.ne 2
.na
\fB\fB\et\fR\fR
.ad
.RS 8n
Tab character.
.RE

.sp
.ne 2
.na
\fB\fB\ev\fR\fR
.ad
.RS 8n
Vertical tab character.
.RE

.sp
.ne 2
.na
\fB\fB\e\e\fR\fR
.ad
.RS 8n
Backslash character.
.RE

.sp
.ne 2
.na
\fB\fB\e0\fR\fIx\fR\fR
.ad
.RS 8n
The 8-bit character whose \fBASCII\fR code is the \fB1\fR-, \fB2\fR-, or
\fB3\fR-digit octal number \fIx\fR.
.RE

.SH OPTIONS
.SS "ksh"
The following options are supported by \fBksh\fR:
.sp
.ne 2
.na
\fB\fB-n\fR\fR
.ad
.RS 12n
Suppresses \fBnew-line\fR from being added to the output.
.RE

.sp
.ne 2
.na
\fB\fB-r\fR\fB-R\fR\fR
.ad
.RS 12n
Raw mode. Ignore the escape conventions of \fBecho\fR. The \fB-R\fR option
prints all subsequent arguments and options other than \fB-n\fR.
.RE

.sp
.ne 2
.na
\fB\fB-p\fR\fR
.ad
.RS 12n
Cause the arguments to be written onto the pipe of the process spawned with
\fB|&\fR instead of standard output.
.RE

.sp
.ne 2
.na
\fB\fB-s\fR\fR
.ad
.RS 12n
Cause the arguments to be written onto the history file instead of standard
output.
.RE

.sp
.ne 2
.na
\fB\fB-u\fR [ \fIn\fR ]\fR
.ad
.RS 12n
Specify a one digit file descriptor unit number \fIn\fR on which the output is
placed. The default is 1.
.RE

.SS "ksh93"
The following options are supported by \fBksh93\fR:
.sp
.ne 2
.na
\fB\fB-e\fR \fI\fR\fR
.ad
.RS 13n
Unless \fB-f\fR is specified, process \fB\e\fR sequences in each string operand
as described above. This is the default behavior.
.sp
If both \fB-e\fR and \fB-r\fR are specified, the last one specified is the one
that is used.
.RE

.sp
.ne 2
.na
\fB\fB-f\fR \fIformat\fR\fR
.ad
.RS 13n
Write the string arguments using the format string \fIformat\fR and do not
append a NEWLINE. See \fBprintf\fR(1) for details on how to specify format.
.sp
When the \fB-f\fR option is specified and there are more string operands than
format specifiers, the format string is reprocessed from the beginning. If
there are fewer string operands than format specifiers, then outputting ends at
the first unneeded format specifier.
.RE

.sp
.ne 2
.na
\fB\fB-n\fR\fR
.ad
.RS 13n
Do not append a NEWLINE character to the output.
.RE

.sp
.ne 2
.na
\fB\fB-p\fR\fR
.ad
.RS 13n
Write to the current co-process instead of standard output.
.RE

.sp
.ne 2
.na
\fB\fB-r\fR\fR
.ad
.br
.na
\fB\fB-R\fR\fR
.ad
.RS 13n
Do not process \fB\e\fR sequences in each string operand as described above.
.sp
If both \fB-e\fR and \fB-r\fR are specified, the last one specified is the one
that is used.
.RE

.sp
.ne 2
.na
\fB\fB-s\fR\fR
.ad
.RS 13n
Write the output as an entry in the shell history file instead of standard
output.
.RE

.sp
.ne 2
.na
\fB\fB-u\fR \fIfd\fR\fR
.ad
.RS 13n
Write to file descriptor number \fIfd\fR instead of standard output. The
default value is \fB1\fR.
.RE

.SH EXIT STATUS
The following exit values are returned:
.sp
.ne 2
.na
\fB\fB0\fR\fR
.ad
.RS 6n
Successful completion.
.RE

.sp
.ne 2
.na
\fB\fB>0\fR\fR
.ad
.RS 6n
Output file is not open for writing.
.RE

.SH SEE ALSO
\fBecho\fR(1), \fBksh\fR(1), \fBksh93\fR(1), \fBprintf\fR(1),
\fBattributes\fR(5)