mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
13 lines
187 B
Markdown
13 lines
187 B
Markdown
![]() |
# echo
|
||
|
|
||
|
> Print given arguments
|
||
|
|
||
|
- Print text message. Note: quots are optional
|
||
|
|
||
|
`echo Hello World`
|
||
|
or
|
||
|
`echo "Hello World"`
|
||
|
|
||
|
- Print message with variable $PATH
|
||
|
|
||
|
`echo "My path is $PATH"`
|