[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    echo(1B) manual page Table of Contents

Name

echo - echo arguments to standard output

Synopsis

/usr/ucb/echo [ -n ] [ argument ]

Availability

SUNWscpu

Description

echo writes its arguments, separated by BLANK s and terminated by a NEWLINE , to the standard output.

echo is useful for producing diagnostics in command files and for sending known data into a pipe, and for displaying the contents of environment variables.

For example, you can use echo to determine how many subdirectories below the root directory (/) is your current directory, as follows:

example% /usr/bin/echo "echo $PWD | tr ’/’ ’ ’ | wc -w"

See tr(1) and wc(1) for their functionality.

The shells, csh(1) , ksh(1) , and sh(1) , each have an echo built-in command, which, by default, will have precedence, and will be invoked if the user calls echo without a full pathname. /usr/ucb/echo and csh’s echo() have a -n option, but do not understand back-slashed escape characters. sh’s echo(), ksh’s echo(), and /usr/bin/echo, on the other hand, understand the black-slashed escape characters, and ksh’s echo() also understands \a as the audible bell character; however, these commands do not have a -n option.

Options

-n
Do not add the NEWLINE to the output.

See Also

csh(1) , echo(1) , ksh(1) , sh(1) , tr(1) , wc(1)

Notes

The -n option is a transition aid for BSD applications, and may not be supported in future releases.


Table of Contents