BASH Shell commands cat ( commands for linux )

cat command commands for linuxThe cat command which gets its name from the word catenate, has a very basic function that is to take some kind of input file, or input from stdin (the keyboard) and write it somewhere else. This could be to stdout(the screen) or another file. Cat is a very versitile tool and is able to work with any file type, whether it be a text file or a binary file. You can also use cat to view the content of a file right in the terminal window, by simply typing cat and then the name of the file you wish to view. To see cat in action check out this video tutorial on cat usage.