append file linux code example
Example 1: add a line at the end of a file linux
echo 'text here' >> filename
Example 2: bash add text to file
echo "hello world" >> my_file.txt
Example 3: bash append 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, append the following string:
"Hello there,\n new line!"