Example method to find keywords and their preceding and following information in Linux logs

Example method to find keywords and their preceding and following information in Linux logs

In daily work, we often need to view logs. For example, we can view logs in real time through the tail command, or we can view log information through commands such as cat .

But now we are going to discuss how to filter out the content we want from the log by keywords. There are many ways to do this. Today we will mainly learn about the cat command.

Assume that there is a log file hrun.log , and the query keyword is "new user":

View logs by keyword
cat hrun.log | grep "new user"

View the last 10 lines of logs according to keywords
cat hrun.log | grep "new user" -A 10

View the first 10 log lines by keyword
cat hrun.log | grep "new user" -B 10

View the 10 lines of logs before and after the keyword and display the line numbers
cat -n hrun.log | grep "New User" -C 10

View the first 50 lines of the log
cat hrun.log | head -n 50

View the last 50 lines of the log and display the line number
cat -n hrun.log | tail -n 50

illustrate:

  • -A means after the keyword.
  • -B means before the keyword.
  • -C means before and after the keyword, Context

The above is all the knowledge points about finding keywords in Linux logs introduced this time. Thank you for your learning and support for 123WORDPRESS.COM.

<<:  Elegant practical record of introducing iconfont icon library into vue

>>:  Examples of optimistic locking and pessimistic locking in MySQL

Recommend

How to install PostgreSQL11 on CentOS7

Install PostgreSQL 11 on CentOS 7 PostgreSQL: The...

Use Xshell to connect to the Linux virtual machine on VMware (graphic steps)

Preface: I recently started to study the construc...

Linux virtual memory settings tutorial and practice

What is Virtual Memory? First, I will directly qu...

MySQL 8.0.2 offline installation and configuration method graphic tutorial

The offline installation method of MySQL_8.0.2 is...

A brief analysis of the differences between px, rem, em, vh, and vw in CSS

Absolute length px px is the pixel value, which i...

How to open port 8080 on Alibaba Cloud ECS server

For security reasons, Alibaba Cloud Server ECS co...

Detailed steps to install mysql5.7.18 on Mac

1. Tools We need two tools now: MySQL server (mys...

How to hide elements on the Web and their advantages and disadvantages

Example source code: https://codepen.io/shadeed/p...

React's component collaborative use implementation

Table of contents Nesting Parent-child component ...

How to remotely log in to the MySql database?

Introduction: Sometimes, in order to develop a pr...

Sample code using the element calendar component in Vue

First look at the effect diagram: The complete co...

CentOS 7.x docker uses overlay2 storage method

Edit /etc/docker/daemon.json and add the followin...

Native JS encapsulation vue Tab switching effect

This article example shares the specific code of ...

MySQL uses the truncate command to quickly clear all tables in a database

1. Execute the select statement first to generate...

IDEA2021 tomcat10 servlet newer version pitfalls

Because the version I used when I was learning wa...