cat 
cat allows you to read multiple files and then print them out.  You can combine files by using the > operator and append files by using >>.
Structure: cat [argument] [specific file]
If you wanted to append three files, you'd do this: 
cat silly.html monkey.html baby.html > all
Back to the index.