mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
21 lines
288 B
Markdown
21 lines
288 B
Markdown
# echo
|
|
|
|
Use `echo` to repeat arguments back to the user
|
|
|
|
## Examples
|
|
|
|
```shell
|
|
> echo Hello world
|
|
───┬───────
|
|
# │
|
|
───┼───────
|
|
0 │ Hello
|
|
1 │ world
|
|
───┴───────
|
|
```
|
|
|
|
```shell
|
|
> echo "Hello, world!"
|
|
Hello, world!
|
|
```
|