Seeing-Contents-Of-Files

See Contents of Files in Bash

Source

Run the cat command to see the contents of files. So for example:

cat ~/.gnupg/gpg.conf

You can also use this to create and append stuff to files.

Create new file

cat >filename.txt

Append to file

cat some text >> sampleTxt.txt

#bash