1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

Base: Mention -n option in echo(1) manpage

This commit is contained in:
Linus Groh 2021-02-20 15:58:36 +01:00 committed by Andreas Kling
parent 4896005fb2
commit 1002236715

View file

@ -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