Concatentate files.
How:
Go to ~/cat
cd ~/cat
cat ./chapter1 ./chapter2 > ./book
cat ./chapter3 >> ./book
cat << EOF >> ./book
This is the end of the book.
EOFcat ./book
#########
# Chapter One
#########
%%%%%%%%%
% Chapter Two
%%%%%%%%%
*********
* Chapter Three
*********
This is the end of the book.