how to write in a file in shell scripting code example
Example: bash write file
# syntax (note: the -e switch is to allow for backslash escapes)
# echo -e "<string-to-append>" >> <file-to-append-to>
# example
echo -e "Hello there, new line!" >> RandomWorld.txt
# -----------------------------------------------
# In order to see the effect of -e, use the following string:
# "Hello there,\n new line!"