cat => displays the contents of the file
cat => takes input from STDIN and puts it back to the STDOUT
cat > => Take in put from STDIN and put contents in , This will overwrite the contents.
cat >> => Take in put from STDIN and put contents in , This will append the contents.