echo.1 (1556B)
- .\" utils-std: Collection of commonly available Unix tools
- .\" Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- .\" SPDX-License-Identifier: MPL-2.0
- .Dd October 31, 2024
- .Dt ECHO 1
- .Os
- .Sh NAME
- .Nm echo
- .Nd write arguments to standard output
- .Sh SYNOPSIS
- .Nm
- .Op Fl Een
- .Op Ar string...
- .Sh DESCRIPTION
- .Nm
- buffers all
- .Ar string
- together with a final newline and then does a single write to standard output.
- If there is no
- .Ar string ,
- only the newline is written.
- .Pp
- The
- .Fl -
- operand, which generally terminates option processing, is treated as part of
- .Ar string .
- .Sh OPTIONS
- .Bl -tag -width Ds
- .It Fl n
- Do not print the trailing newline character.
- .It Fl E
- Toggle off the support for escape codes. (default)
- .It Fl e
- Toggle on support for the following escape codes:
- .Bl -tag -compact -width _a
- .It \ea
- Write an <alert>.
- .It \eb
- Write a <backspace>.
- .It \ec
- Clear the rest of the output, including the trailing newline.
- .It \ef
- Write a <form-feed>.
- .It \en
- Write a <newline>.
- .It \er
- Write a <carriage-return>.
- .It \et
- Write a <tab>.
- .It \ev
- Write a <vertical-tab>.
- .It \e\e
- Write a <backslash> character.
- .It \e0 Ns Ar num
- Write an octet corresponding to the zero, one, two, or three digits octal number
- .Ar num .
- For example
- .Ql \e0
- writes the NULL byte, and
- .Ql \e01
- writes a octet of value 1.
- .El
- .El
- .Sh EXIT STATUS
- .Ex -std
- .Sh SEE ALSO
- .Xr printf 1
- .Sh STANDARDS
- Should be compliant with the
- IEEE Std 1003.1-2024 (“POSIX.1”)
- specification.
- .Sh AUTHORS
- .An Haelwenn (lanodan) Monnier Aq Mt contact+utils@hacktivis.me