echo: add one more example (#3122)

italian
Ivan Aracki 2019-06-22 17:40:44 +02:00 committed by Marco Bonelli
parent 05daa0891d
commit a6adec927f
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@
`echo -n {{"Hello World"}}`
- Append a message to the file:
`echo {{"Hello World"}} >> {{file.txt}}`
- Enable interpretation of backslash escapes (special characters):
`echo -e {{"Column 1\tColumn 2"}}`