1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-21 19:17:48 +01:00
nushell/docs/commands/echo.md

21 lines
288 B
Markdown
Raw Normal View History

2019-10-01 12:14:56 +02:00
# echo
Use `echo` to repeat arguments back to the user
## Examples
```shell
> echo Hello world
───┬───────
# │
───┼───────
0 │ Hello
1 │ world
───┴───────
```
```shell
2019-10-01 12:14:56 +02:00
> echo "Hello, world!"
Hello, world!
```