Almost every file that you directly work on in the Linux terminal can be manipulated as a text file. This includes configuration files, log files about various services and processes in the system, and script files that come bundled with the Linux Distribution of your choice or which you write yourself. Knowing how to quickly view the content of these files in the Linux terminal is an invaluable skill that not only saves you time but also helps you learn more about the system. This tutorial will show you how to view these kinds of files in the Linux terminal.

cat

The cat command is a simple and extremely useful command for viewing file contents on Linux. You can use the cat command to quickly print file content to the standard output in the terminal or alternatively concatenate the output. The syntax for the cat command is as follows: For example, if you have a file called simple-list.txt, which contains a list of some items, you can view the contents of this file by using the command For example: You can also list multiple files at the same time to get the output of all files in the terminal at once, as shown below:

nl

If you want to be able to see the line number for each line in a file, the nl command does exactly that. You can use this command in the same way as the cat command, and the only difference is that nl has line numbers enabled by default. Using the cat command, you can get the same result with the -e option. Here is an example output of the same simple-list.txt file output with nl The line numbers can be changed to be left justified by using the -nln option. There are other options as well you can use with the nl command, listed under man nl

more

So far, you have needed to scroll through the output using your mouse scroll wheel or Shift+Page-up and Shift+Page-down buttons on the keyboard. However, more command provides a much easier way to view longer files that do not fit completely within the terminal window. The same simple-list.txt file is shown when viewed through more commands: Navigation in the viewing window of more commands can be either line by line or page by page. You can use Enter key to navigate by one line at a time or the Space key to navigate by one page at a time. The B key is used to go back to the previous page. More command also tells you when you reach the end of the file as well, as shown below: You can quit the viewing window of more commands at any time by pressing q, which returns you to the terminal screen. In this way, more commands can be used to view long config or log files without breaking the flow of the terminal.

less

Less is a more modern take on more command. Back when fewer commands were introduced in the Linux ecosystem, most commands did not support scrolling back up. In addition to letting users scroll up and down, less command also supports horizontal scrolling, supports better handling for binary files, and can perform a search through text. Let’s look at our simple-list.txt file through less:

You can use arrow keys on the keyboard to navigate, in addition to the navigation keys for more commands. While you are in the viewing window of less, you can use /word to search through the file contents for word. This is shown in the screenshot below where the user searches for apple in the file contents: Less command also supports more advanced features such as being able to view file contents at the first occurrence of a specific word. To do this, the command syntax is as follows: For example, to open the apples.txt file at the first occurrence of the word cultivar, the following command would be used:

If you just want to quickly view the first ten lines of a file, you can do that through The head command as shown below: By default, only the first ten lines are shown in the terminal, but you can change the number of lines displayed by using the -n option, as shown below: Similarly, the -c option can be used to print a specific number of bytes from the file to the terminal.

tail

The tail command works like the head command, with the only major difference being that it shows the last ten lines of the file instead of the first ten lines. In addition, both head and tail commands can be used with other file viewing commands shown in the tutorial to produce better output for users. For example, the nl command can be used to first show the file with line numbers. Then the result can be piped to less to view the last three lines of the file, as shown below:

Frequently asked questions about viewing Linux files

6 Ways to View Linux File Content - 966 Ways to View Linux File Content - 666 Ways to View Linux File Content - 216 Ways to View Linux File Content - 766 Ways to View Linux File Content - 786 Ways to View Linux File Content - 116 Ways to View Linux File Content - 486 Ways to View Linux File Content - 696 Ways to View Linux File Content - 646 Ways to View Linux File Content - 96 Ways to View Linux File Content - 34