Display contents of a file, or files.
cat
will sequentially read and concatenate the contents of the input filenames and output them to stdout.
# Read and display contents of .gitignore file
cat .gitignore
# Read and displays the contents of multiple files
cat .gitignore .bowerrc .babelrc yourfile.css