Cat
From Wiki
CAT - To read out a file.
cat file.txt
To append one file to the end of another, enter:
cat section1.4 > > section1
The > > (two carets) appends a copy of section1.4 to the end of section1. If you want to replace the file, use the > (caret).
