SysIII/usr/src/man/man1/echo.1

Compare this file to the similar file:
Show the results in this format:

.TH ECHO 1
.SH NAME
echo \- echo arguments 
.SH SYNOPSIS
.B echo
[ arg ] ...
.SH DESCRIPTION
.I Echo\^
writes its arguments separated by blanks and terminated by
a new-line on the standard output.
It also
understands C-like escape conventions;
beware of conflicts with the shell's use of \fB\e\fP:
.PP
.RS
.PD 0
.TP
.B \eb
backspace
.TP
.B \ec
print line without new-line
.TP
.B \ef
form-feed
.TP
.B \en
new-line
.TP
.B \er
carriage return
.TP
.B \et
tab
.TP
.B \e\e
backslash
.TP
.BI \e n\^
the 8-bit character whose \s-1ASCII\s0 code is
the 1-, 2- or 3-digit octal number
.IR n ,
which must start with a zero.
.RE
.PD
.PP
.I Echo\^
is useful for producing diagnostics in command files
and for sending known data into a pipe.
.SH SEE ALSO
sh(1).