Linux cat command in Example
cat – concatenate files and print on the standard output, is a standard Unix utility that reads files sequentially, writing them to standard output. The name is derived from its function to concatenate files.
Use
Example
View the content of a file
cat exploit.py
cat -n textfile1 > textfile2
cat -b textfile1 textfile2 >> textfile3