BSD 3 development
[unix-history] / usr / man / man1 / echo.1
CommitLineData
8b41a517
BJ
1.TH ECHO 1
2.SH NAME
3echo \- echo arguments
4.SH SYNOPSIS
5.B echo
6[
7.B \-n
8]
9[ arg ] ...
10.SH DESCRIPTION
11.I Echo
12writes its arguments separated by blanks and terminated by
13a newline on the standard output.
14If the flag
15.B \-n
16is used,
17no newline is added to the output.
18.PP
19.I Echo
20is useful for producing diagnostics in
21shell programs and for writing constant data on pipes.
22To send diagnostics to the standard error file, do
23`echo ... 1>&2'.