Citation :
darkoli > man echo
Reformatting page. Please Wait... done
User Commands echo(1)
NAME
echo - echo arguments
SYNOPSIS
/usr/bin/echo [ string ... ]
DESCRIPTION
The echo utility writes its arguments, separated by BLANKs
and terminated by a NEWLINE, to the standard output. If
there are no arguments, only the NEWLINE character will be
written.
echo is useful for producing diagnostics in command files,
for sending known data into a pipe, and for displaying the
contents of environment variables.
The C shell, the Korn shell, and the Bourne shell all have
echo built-in commands, which, by default, will be invoked
if the user calls echo without a full pathname.
See shell_builtins(1). sh's echo, ksh's echo, and
/usr/bin/echo understand the back-slashed escape characters,
except that sh's echo does not understand \a as the alert
character. In addition, ksh's echo, does not have a -n
option. sh's echo and /usr/bin/echo only have a -n option
if the SYSV3 environment variable is set (see ENVIRONMENT
below).
If it is, none of the backslashed characters mentioned
above are availible. csh's echo and /usr/ucb/echo, on the
other hand, have a -n option, but do not understand the
back-slashed escape characters.
OPERANDS
The following operands are supported:
string
A string to be written to standard output. If any
operand is "-n", it will be treated as a string, not
an option. The following character sequences will be
recognized within any of the arguments:
\a alert character
\b backspace
\c print line without new-line
\f form-feed
\n new-line
\r carriage return
[...]
|