1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 07:35:24 +02:00

Merge pull request #203 from igorshubovych/echo

Pages: echo
This commit is contained in:
Romain Prieto 2014-05-11 21:10:10 +10:00
commit e7ba3a83d3

13
pages/common/echo.md Normal file
View file

@ -0,0 +1,13 @@
# 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"`