Browse Source

echo: add one more example (#3122)

Ivan Aracki 5 years ago
parent
commit
a6adec927f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/echo.md

+ 4 - 0
pages/common/echo.md

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