cat – concatenate files and print on the standard output.
Format cat [options] filename
Eg!: cat file1
Displays the content of the file.
Eg2: cat > file1
It adds the content to the file file1.
Ctrl+c save + quit
Ctrl+z quit
Eg3: cat >> file1
Here it appends the file file1.
