From 1002236715bb9947f55823096b3b170b5c599c8a Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 20 Feb 2021 15:58:36 +0100 Subject: [PATCH] Base: Mention -n option in echo(1) manpage --- Base/usr/share/man/man1/echo.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Base/usr/share/man/man1/echo.md b/Base/usr/share/man/man1/echo.md index 34b296b5c1..ac891ed8c1 100644 --- a/Base/usr/share/man/man1/echo.md +++ b/Base/usr/share/man/man1/echo.md @@ -5,7 +5,7 @@ echo - print the given text ## Synopsis ```**sh -$ echo text... +$ echo [-n] text... ``` ## Description @@ -13,6 +13,10 @@ $ echo text... Print the given *text*, which is passed as argv, to the standard output, separating arguments with a space character. +## Options + +* `-n`: Do not output a trailing newline + ## Examples ```sh