tldr/pages/common/echo.md

20 lines
371 B
Markdown
Raw Normal View History

2014-05-11 11:20:51 +01:00
# echo
> Print given arguments.
2014-05-11 11:20:51 +01:00
- Print a text message. Note: quotes are optional:
2014-05-11 11:20:51 +01:00
`echo {{"Hello World"}}`
2014-05-11 11:20:51 +01:00
- Print a message with environment variables:
2014-05-11 11:20:51 +01:00
`echo {{"My path is $PATH"}}`
2016-07-21 14:52:49 +01:00
- Print a message without the trailing newline:
`echo -n {{"Hello World"}}`
- Enable interpretation of backslash escapes (special characters):
`echo -e {{"Column 1\tColumn 2"}}`