Linux command display file content

Linux command display file content

In this tutorial, we will look at different ways to display the contents of files. Here is a list of most popular command to display the file’s contents:

Command Meaning
cat file Display the contents of file.
more file Browse through a text file.
less file More features than more.
head file Output the beginning (or top) portion file.
tail file Output the ending (or bottom) portion of file.

You can use the cat command to display the entire contents of a file. The more command will allow you to browse through a file or page through a file.

less command

The less command is like more except is has more features, less is more. When using the commands more or less , use the Space bar to advance the next page. Use the Enter key to advance once line and type q to quit viewing the file. The commands are based on the vim editor .

Command Action
Page Up or b Scroll back on page
Page Down or space Scroll forward on page
Up Arrow Scroll up one line
Down Arrow Scroll down one line
G Move to the end of the text file
1G or g Move to the beginning of the text file
/characters Search forward to the next occurrence of characters
n Search for the next occurrence of the previous search
h Display help screen
q Quit less

Head and Tail

By default head and tail only display 10 lines. If you want to see the last 15 lines of a file, you need to specify the -n and n is the number of lines.

Viewing files in Real Time

The cat command can be a fine way to view files that have static content. However, if you are trying to keep up with changes that are being made to a file in real time, cat is not your choice. You should use tail -f filename . You would use this to look at files that change often, for examples, log files. You may wanna start a program and look at the programe’s log file to see exactly what it is doing.

Example

Suppose there is a file test.txt with the following content:

line 1 line 2 line 3 line 4 line 5 line 6 line 7 line 8 line 9 line 10 line 11 line 12

To look at this file with the cat command:

$ cat test.txt line 1 line 2 line 3 line 4 line 5 line 6 line 7 line 8 line 9 line 10 line 11 line 12

If run head against it, you will see the top 10 lines:

$ head test.txt line 1 line 2 line 3 line 4 line 5 line 6 line 7 line 8 line 9 line 10

If you only want to see the top 2 lines, you can type:

$ head -2 test.txt line 1 line 2

And the tail command will display the last 10 lines:

$ tail test.txt line 3 line 4 line 5 line 6 line 7 line 8 line 9 line 10 line 11 line 12

Latest Post

  • Dependency injection
  • Directives and Pipes
  • Data binding
  • HTTP Get vs. Post
  • Node.js is everywhere
  • MongoDB root user
  • Combine JavaScript and CSS
  • Inline Small JavaScript and CSS
  • Minify JavaScript and CSS
  • Defer Parsing of JavaScript
  • Prefer Async Script Loading
  • Components, Bootstrap and DOM
  • What is HEAD in git?
  • Show the changes in Git.
  • What is AngularJS 2?
  • Confidence Interval for a Population Mean
  • Accuracy vs. Precision
  • Sampling Distribution
  • Working with the Normal Distribution
  • Standardized score — Z score
  • Percentile
  • Evaluating the Normal Distribution
  • What is Nodejs? Advantages and disadvantage?
  • How do I debug Nodejs applications?
  • Sync directory search using fs.readdirSync
Читайте также:  Смонтировать iso на линукс

Источник

Terminal Basics #5: View the File Contents in Linux

In this chapter of the Terminal Basics series, you’ll learn about viewing the contents of files in the Linux command line.

You learned to create new files in the previous chapter of the Terminal Basics series. In this chapter, you’ll learn to read the files. I’ll be discussing the most common Linux commands to display the contents of a text file. Before you do that, let’s create our ‘playground’ with sample files. Let’s create a directory first and switch to it.

mkdir display_files && cd display_files

And then, create a new file named columbo.txt with the following text (use the cat command with >> as discussed in the previous chapter):

Prescription: Murder Ransom for a Dead Man Murder by the Book Death Lends a Hand Dead Weight Suitable for Framing Lady in Waiting Short Fuse Blueprint for Murder

You don’t have to type it all by yourself. You can copy-paste in the terminal using Ctrl+Shift+V. Most terminals support this shortcut. With things set, let’s see various ways of viewing files in the Linux terminal.

Use cat command to display file content

The cat command is the most popular method to view files in Linux. It is dead simple to use. Just give it the file name and it displays the file content on the screen. Things cannot go simpler than this.

Using the cat command to view files in Linux

This is the output it shows:

Optional challenge: Use the cat or echo command with >> redirection to add a new line with «Etude in Black» text to the columbo.txt file. Refer to the previous chapter if you need help.

Using the less command to read large text files

The cat command is so simple. In fact, it is too simple. And simple doesn’t work in complicated scenarios. Try using the cat command to view the content of the services file.

This services is a huge file with hundreds of lines. When you use cat, it floods the entire screen with the entire text. This is not ideal. Can you read the first line of the file? Yes, you can but you have to scroll all the way up. If the file has thousands of lines, you won’t even be able to scroll back to the first few lines. This is where the less command comes into the picture. It lets you read the contents of a file in a page-by-page manner. You exit the viewing mode and your terminal screen is clean as ever. Use the less command to read the services file:

Now you are in a different viewing mode. You can use the arrow keys to move line by line. You can also use the Page Up and Page Down keys to move up and down by pages. You can even search for certain text using /search_term. When you are done reading the file, press Q key to exit the less view and go back to the normal terminal viewing. This table will help you use less:

Читайте также:  Менеджер загрузок для linux
Keys Action
Up arrow Move one line up
Down arrow Move one line down
Space or PgDn Move one page down
b or PgUp Move one page up
g Move to the beginning of the file
G Move to the end of the file
ng Move to the nth line
/pattern Search for pattern and use n to move to next match
q Exit less

From viewing files in real time to bookmarking text, less can do a lot more. Read this to learn more about it.

Head and tail to show part of text files

If you only want to see certain parts of the text file in cat-styled display, use the head and tail commands. By default, the head command displays the first 10 lines of a file.

Practice examples

#create or clear the content of the file echo -n > sample #put content to the file for i in do echo "This is the line $i" >> sample done

Create a new file named script.sh and copy-paste the above script content into it. Now run the script like this to generate your sample file:

Now, you have got a file named sample that contains lines like «This is the line number N» for every 70 lines.

Let’s take it to the next level. You can combine them both to show specific lines of a file. For example, to show lines from 35 to 40, use it like this:

head -n 40 filename | tail -n +35

Show a range of lines in Linux

Here:

  • head -n 40 filename will display the first 40 lines of the file.
  • tail -n +35 will display the lines from the 35th line to the end of the output from the head command. Yeah! Mind the + sign that changes the normal behavior of the tail command.

You can also combine them to show only a particular line. Let’s say you want to display the 55th line; combine head and tail like this.

head -n 55 filename | tail -n 1

Show only a particular line in Linux command line

  • head -n 55 filename will display the first 55 lines of the file.
  • tail -n 1 will display the last line of the output from the head command, which will be the 55th line of the file.

Test your knowledge

Time for you to exercise your grey cells and practice what you learned in this chapter.

  • Use the same sample file and display lines from 63 and 68.
  • Now display the lines from 67 to 70.
  • How about displaying the first line only?
  • What do you see in the /etc/passwd file? Display its content.

That’s it for this chapter. Next, you’ll learn about removing files and folders in the command line. Stay tuned.

Источник

5 Commands to View the Content of a File in Linux Command Line

Here are five commands that let you view the content of a file in Linux terminal.

If you are new to Linux and you are confined to a terminal, you might wonder how to view a file in the command line.

Reading a file in Linux terminal is not the same as opening file in Notepad. Since you are in the command line mode, you should use commands to read file in Linux.

Don’t worry. It’s not at all complicated to display a file in Linux. It’s easy as well essential that you learn how to read files in the line.

Here are five commands that let you view the content of a file in Linux terminal.

5 commands to view files in Linux

Before you how to view a file in Unix like systems, let me clarify that when I am referring to text files here. There are different tools and commands if you want to read binary files.

Читайте также:  Альт линукс смена пароля root

cat command example

Cat becomes a powerful command when used with its options. I recommend reading this detailed tutorial on using cat command.

The problem with cat command is that it displays the text on the screen. Imagine if you use cat command with a file that has 2000 lines. Your entire screen will be flooded with the 200 lines and that’s not the ideal situation.

So, what do you do in such a case? Use less command in Linux (explained later).

2. nl

The nl command is almost like the cat command. The only difference is that it prepends line numbers while displaying the text in the terminal.

nl command example

There are a few options with nl command that allows you to control the numbering. You can check its man page for more details.

3. Less

Less command views the file one page at a time. The best thing is that you exit less (by pressing q), there are no lines displayed on the screen. Your terminal remains clean and pristine.

less command example

I strongly recommend learning a few options of the Less command so that you can use it more effectively.

There is also more command which was used in olden days but less command has more friendly features. This is why you might come across the humorous term ‘less is more’.

4. Head

Head command is another way of viewing text file but with a slight difference. The head command displays the first 10 lines of a text file by default.

Head command example

You can change this behavior by using options with head command but the fundamental principle remains the same: head command starts operating from the head (beginning) of the file.

5. Tail

Tail command in Linux is similar and yet opposite to the head command. While head command displays file from the beginning, the tail command displays file from the end.

By default, tail command displays the last 10 lines of a file.

Tail command in Linux

Head and Tail commands can be combined to display selected lines from a file. You can also use tail command to see the changes made to a file in real time.

Bonus: Strings command

Okay! I promised to show only the commands for viewing text files. And this one deals with both text and binary files.

The Strings command displays the readable text from a binary file.

No, it doesn’t convert binary files into text files. If the binary file consists of actual readable text, the strings command displays those text on your screen. You can use the file command to find the type of a file in Linux.

Conclusion

Some Linux users use Vim to view the text file. Of course, you can easily move from the beginning to the end of the lines and edit the file but it’s overkill for just reading a file. My favorite command to open a file in Linux is the less command. It leaves the screen clear and has several options that makes viewing text file a lot easier.

Since you now know ways to view files, maybe you would be interested in knowing how to edit text files in Linux. Cut and Paste are two such commands that you can use for editing text in Linux terminal. You may also read about creating files in Linux command line.

Which command do you prefer?

Источник

Оцените статью
Adblock
detector