8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man1b / echo.1b
blob66f05cab6184380046eb73ddf6b611b45bea0e4e
1 '\" te
2 .\"  Copyright (c) 1988 Sun Microsystems, Inc - All Rights Reserved.
3 .\" 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.
4 .\" 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.
5 .\" 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]
6 .TH ECHO 1B "Aug 3, 1994"
7 .SH NAME
8 echo \- echo arguments to standard output
9 .SH SYNOPSIS
10 .LP
11 .nf
12 \fB/usr/ucb/echo\fR [\fB-n\fR] [\fIargument\fR]
13 .fi
15 .SH DESCRIPTION
16 .sp
17 .LP
18 \fBecho\fR writes its arguments, separated by \fIBLANK\fRs and terminated by a
19 \fINEWLINE\fR, to the standard output.
20 .sp
21 .LP
22 \fBecho\fR is useful for producing diagnostics in command files and for sending
23 known data into a pipe, and for displaying the contents of environment
24 variables.
25 .sp
26 .LP
27 For example, you can use \fBecho\fR to determine how many subdirectories below
28 the root directory (\fB/\fR) is your current directory, as follows:
29 .RS +4
30 .TP
31 .ie t \(bu
32 .el o
33 echo your current-working-directory's full pathname
34 .RE
35 .RS +4
36 .TP
37 .ie t \(bu
38 .el o
39 pipe the output through \fBtr\fR to translate the path's embedded
40 slash-characters into space-characters
41 .RE
42 .RS +4
43 .TP
44 .ie t \(bu
45 .el o
46 pipe that output through \fBwc\fR \fB-w\fR for a count of the names in your
47 path.
48 .sp
49 .in +2
50 .nf
51 example% \fB/usr/bin/echo "echo $PWD | tr '/' ' ' | wc -w"\fR
52 .fi
53 .in -2
54 .sp
56 .RE
57 .sp
58 .LP
59 See \fBtr\fR(1) and \fBwc\fR(1) for their functionality.
60 .sp
61 .LP
62 The shells \fBcsh\fR(1), \fBksh\fR(1), and \fBsh\fR(1), each have an \fBecho\fR
63 built-in command, which, by default, will have precedence, and will be invoked
64 if the user calls \fBecho\fR without a full pathname. \fB/usr/ucb/echo\fR and
65 \fBcsh\fR's \fBecho()\fR have an \fB-n\fR option, but do not understand
66 back-slashed escape characters. \fBsh\fR's \fBecho()\fR, \fBksh\fR's
67 \fBecho()\fR, and \fB/usr/bin/echo\fR, on the other hand, understand the
68 black-slashed escape characters, and \fBksh\fR's \fBecho()\fR also understands
69 \fB\ea\fR as the audible bell character; however, these commands do not have an
70 \fB-n\fR option.
71 .SH OPTIONS
72 .sp
73 .ne 2
74 .na
75 \fB\fB-n\fR\fR
76 .ad
77 .RS 6n
78 Do not add the \fINEWLINE\fR to the output.
79 .RE
81 .SH SEE ALSO
82 .sp
83 .LP
84 \fBcsh\fR(1), \fBecho\fR(1), \fBksh\fR(1), \fBsh\fR(1), \fBtr\fR(1),
85 \fBwc\fR(1), \fBattributes\fR(5)
86 .SH NOTES
87 .sp
88 .LP
89 The \fB-n\fR option is a transition aid for \fBBSD\fR applications, and may not
90 be supported in future  releases.