How to find the specified content of a large file in Linux

How to find the specified content of a large file in Linux

Think big and small, then redirect.

Sometimes Linux encounters very large files, and keyword searches must exceed the entire screen, making it impossible to view all the content. For example, if we want to view all logs of a certain string in a very large log file info.log, we can use cat info.log | grep '1711178968'. If too much is displayed, we can add time and line control. You can also use the '>>' command. cat info.log | grep '1711178968' >> temp.log Temporarily save the intermediate results and view the temp.log file page by page using tools such as more and less

If the log is within a certain time range, you can still intercept the log based on time:

// Capture the logs for a certain period of time sed -n '/2018-10-25 17:30:41/,/2018-10-25 21:47:02/p' root.2018-10-25.log > update.log

In the log on the 25th, extract the logs between 17:30 and 21:47.

Use the more command to view.

Then search with /${keyword}, ​​for example /1711178968, n for the next item, b for the previous item

The above method of implementing how to search for specified content in large files in Linux is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to Find the Top 10 Largest Files in Linux
  • How to find large directories and large files in Linux (recommended)
  • Linux searches for files containing specified text (linux searches for specified files)

<<:  The correct way to use MySQL indexes and detailed explanation of index principles

>>:  How to Develop a Progressive Web App (PWA)

Recommend

How to reset the root password in Linux mysql-5.6

1. Check whether the MySQL service is started. If...

Learn javascript iterator

Table of contents Introduction What does an itera...

Detailed explanation of Nginx access restriction configuration

What is Nginx access restriction configuration Ng...

Analysis of implicit bug in concurrent replication of MySQL 5.7

Preface Most of our MySQL online environments use...

Website Color Schemes Choosing the Right Colors for Your Website

Does color influence website visitors? A few year...

JavaScript+html implements random QR code verification on front-end pages

Share the cool front-end page random QR code veri...

JavaScript Basics: Scope

Table of contents Scope Global Scope Function Sco...

ElementUI implements sample code for drop-down options and multiple-select boxes

Table of contents Drop-down multiple-select box U...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

What are HTML inline elements and block-level elements and their differences

I remember a question the interviewer asked durin...

Detailed explanation of vue keepAlive cache clearing problem case

Keepalive is often used for caching in Vue projec...

Seven Principles of a Skilled Designer (1): Font Design

Well, you may be a design guru, or maybe that'...

Analysis of Apache's common virtual host configuration methods

1. Apache server installation and configuration y...