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

Pages: echo

This commit is contained in:
Igor Shubovych 2014-05-11 13:20:51 +03:00
parent 6bf0e6019e
commit 1b0766942d

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"`