echo.1 (861B)
- .\" Collection of Unix tools, comparable to coreutils
- .\" Copyright 2017-2022 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- .\" SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
- .Dd 2021-04-05
- .Dt ECHO 1
- .Os
- .Sh NAME
- .Nm echo
- .Nd write arguments to standard output
- .Sh SYNOPSIS
- .Nm
- .Op Ar string ...
- .Sh DESCRIPTION
- .Nm
- buffers all of it's arguments and writes them all at once to standard output, followed by a newline.
- If there is no arguments, only the newline is written.
- .Pp
- Should also be noted that this version of
- .Nm
- isn't XSI-compliant as arguments like
- .Fl Ar n
- are parsed as strings and backslash operators aren't supported.
- See
- .Xr printf 1
- for such an utility.
- .Sh EXIT STATUS
- .Ex -std
- .Sh STANDARDS
- Not XSI-compliant but should be compliant to
- .St -p1003.1-2008
- .Sh AUTHORS
- .An Haelwenn (lanodan) Monnier Aq Mt contact@hacktivis.me