mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 21:55:00 +00:00
25 lines
333 B
Markdown
25 lines
333 B
Markdown
## Name
|
|
|
|
echo - print the given text
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ echo [-n] text...
|
|
```
|
|
|
|
## Description
|
|
|
|
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
|
|
$ echo hello friends!
|
|
hello friends!
|
|
```
|