| by Arround The Web | No comments

Linux Cat Command Examples

In Linux, the “cat” is the concatenation of files which combines multiple files into a single file. There are other several uses of the cat command in Linux which we will talk in this article to give you an understanding of how it works in different scenarios.

Let’s start the article with the cat command.

How Does the Cat Command Work?

Using the “cat” command, you can create a file, view the file content, concatenate the files, and redirect the file output. The syntax of this command as follows:

$ cat [option] [filename]

Use the previous command if you are present in the same directory. Otherwise, mention the path to that file as follows:

$ cat [option] [path/to/file]

Different options of the cat command are listed in the following:

Options Description
-n To display the line number of file content
-T To display the tab-separated characters in a line-e
-e To display the “$” at the end of lines
-s You can omit the empty lines from the output.
-a To display all the file content

To explore more options, use the following “help” utility:

$ cat --help

Example 1: Display the Content of All Files

The common usage of the cat command is displaying the file contents. To display the file contents to a Terminal, simply type “cat” and the filename as follows:

$ cat [filename]

To display all the files in a current directory, use the wildcard character with the cat command as follows:

$ cat *

To display only the contents of the text files in a directory, enter the following command:

$ cat *.txt

Example 2: Display Multiple Files

You can also combine and display the contents of multiple files together in the Terminal using the cat command. To display multiple files simultaneously, use the following syntax:

$ cat sample.txt test.txt

Example 3: Copy the Output of One File to Another

It can also be utilized to copy the output of one file to another file. If not found, it first creates it. Otherwise, it overwrites the targeted file.

To copy the output of a source file to another file, use the following syntax:

$ cat [source_file] > [destination_file]

An example of this is to copy the output of a testfile1 to another file named testfile_backup as follows:

$ cat [testfile1] > [testfile_backup]

This command first creates the testfile_backup file and then copies the contents of testfile1 to it.

Example 4: Append the Output of a File to Another File

Instead of overwriting the output of a targeted file in the pervious example, you can also make the cat command to append the output:

$ cat [source_file] >> [destination_file]

It creates the destination file if it does not already exist. Otherwise, it appends the output.

 

Copy Multiple Files to Another Text File/Concatenate the Files

The cat command combines several files into a single file. The following syntax can be used to concatenate file1, file2, and file3 and save them to another file named file4.txt:

$ cat [file1] [file2] [file3] > [file4]

For instance, we want to concatenate the output of /etc/hostname, /etc/resolv.conf, and the /etc/hosts file to another file named network.txt:

$ cat /etc/hostname /etc/resolv.conf /etc/hosts > network.txt

Example 5: Display the Line Numbers in File

To display the line numbers to the output of a file, simply use the -n flag as follows:

$ cat -n [filename]

For instance, if you are viewing a file which contains the list of items, you can use the -n flag to display those items with a number. Remember that empty lines are also numbered as follows:

$ cat -n test.txt

If you do not want to number the empty lines, use the -b flag as follows:

$ cat -b test.txt

Example 6: Create a File

To create a file through the cat command, the following syntax can be used for the purpose:

$ cat > [filename]

After entering the previous command, enter the text that you want to store in the file. Once done, save and exit. After that, you can view the contents of your newly created file by executing the following command in the terminal:

$ cat > office.txt

Example 7: Sort the Output

You can also combine the sort with the cat command to sort the output alphabetically as follows:

$ cat test.txt | sort

Example 8: Remove the Consecutive Empty Lines

Sometimes, the file contains consecutive empty lines that you do not want to print. The cat command allows merging those consecutive empty lines and shows them as one empty line:

Use the following command syntax to remove the repeated empty lines:

$ cat -s [filename]

For instance, we have the following file with consecutive empty lines:

$ cat -s test.txt

Example 9: Display the Tab Characters

Sometimes, you have to remove the tabs from your files. Cat command can help you to find the tabs on your file using the -t flag as follows:

$ cat -t test.txt

Example 10: Print the Output of a File

Another popular use of the cat command is in the printing contents of a document. For instance, to print the output of a file to a printing device named /dev/lp, the following syntax is used:

$ cat [filename] > /dev/lp

Conclusion

In this article, we explained through various examples on how you can use the cat command to manipulate the files in Linux. The cat command is popular among all users because of its simple syntax and the various options that it provides. Creating and viewing a file, merging, copying, and appending the file contents, printing, and a lot more can be handled with this single cat command.

Share Button

Source: linuxhint.com

Leave a Reply