2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-13 12:43:48 +00:00
nushell/docs/commands/echo.md

21 lines
288 B
Markdown
Raw Normal View History

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