• 0

Append one file to another in Bash


To append f2's content to f1, one can use the following command:
cat f2 >> f1

OR

echo f2 >> f1