mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 20:42:11 +02:00
20 lines
262 B
Markdown
20 lines
262 B
Markdown
## Name
|
|
|
|
echo - print the given text
|
|
|
|
## Synopsis
|
|
|
|
`echo text...`
|
|
|
|
## Description
|
|
|
|
Print the given *text*, which is passed as argv, to the standard output,
|
|
separating arguments with a space character.
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
$ echo hello friends!
|
|
hello friends!
|
|
```
|