bash append file code example

Example 1: bash append file

# syntax (note: the -e switch is to allow for backslash escapes)
echo -e "" >> 

# 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!"

Example 2: bash append to a file

# Basic syntax:
command >> output_file # Append stdout to output_file

# Note, use > to overwrite file contents and >> to append to a file
# Note, if the output_file doesn't exist, it will be created

Tags:

Misc Example