search
Homephp教程PHP开发Detailed explanation of grep command and related examples

1. Match characters

. Match any single character

[ ] Match any character within the specified range

[^] Match any character within the specified range

[:alpha:] Alphabetic characters

[:lower :] Lowercase alphabetic characters

[:upper:] Uppercase alphabetic characters

[:digit:] Numbers

[:alnum:] Alphanumeric characters

[:space:] White space characters (printing is prohibited), such as carriage return characters, line feeds, vertical tabs and form feeds

[:punct:] punctuation characters

[:cntrl:] control characters (printing prohibited)

[:print:] printable characters

when used Generally, two square brackets are used, which will be used in the following examples.

2. Matching times

* Match the previous character any time

.* Match any character of any length (note the greedy mode, such as grep "r.*t" /etc/passwd )

x{m,n } Specifies that the preceding character appears at least m times and at most N times.

x{m,} Specifies that the previous character appears at least m times

x{0,n} Specifies that the previous character appears at most N times

x{m} Exactly matches m times

? Matches the preceding character 0 Or 1 time

Three. Anchor character

1.^ Anchor at the beginning of the line grep "^r..t" /etc/passwd

2.$ Anchor at the end of the line grep "h$" /etc/passwd

3.^$ Anchor blank line grep "^$" /etc/passwd

4.

5.> (b) Anchor word beginning grep "r..t>" /etc/passwd

Example (easy to confuse):

contains at least one whitespace character grep "[[:space:]]{1,}" /etc /passwd

contains at least one non-whitespace character grep "[^[:space:]]{1,}" /etc/passwd

does not have a whitespace character grep -v "[^[:space:]]{1, }" /etc/passwd

6.() Group characters grep "(l..e).*1r"

Example:

grep --color "l([13]):1:.*: 1" /etc/inittab

Four. Options

-v Invert the result

-i Ignore the case of letters

-o Only display the matched string (other contents of the line are not displayed)

-E Support extended regular expressions

-A n Display n lines below the matched line

-B n Display n lines above the matched line

-C n Display n lines above and below the matched line

Exercise:

1. Find relevant information about user1 in the system. (Create user11, myuser1 in advance) (Error-prone)

grep "user1" /etc/passwd All lines containing user1

grep "" /etc/passwd It seems OK, but adding the following users will not OK

useradd -c "user1's uncle" /etc/passwd -c is a comment

grep "^" /etc/passwd successfully matched

2. Find the system that starts with user followed by a number User related information.

grep "^user[0-9]{1,}>" /etc/passwd

3. Analyze the characteristics of the following two lines of text in the /etc/inittab file, and write a pattern similar to the two lines that can be accurately found ,

requires that the numbers in each row must be the same.

l1:1:wait:/etc/rc.d/rc 1

l3:3:wait:/etc/rc.d/rc 3

grep "l([13]):1:.*: .* 1" inittab

Extension: Match all the above characteristics: grep "l([0-9]):1:.*:.* 1" inittab

If it exceeds 10, you need to add a minimum match: grep "l( [0-9]{1,}):1:.*:.* 1" inittab

4. Display the lines starting with case-insensitive s in the /proc/meminfo file

grep "^[sS] " /proc/meminfo

5. Display the lines ending with nologin in /etc/passwd

grep "nologin$" /etc/passwd

6. Display the lines starting with # in /etc/inittab and followed by one or Lines with multiple whitespace characters, followed by any non-whitespace characters

grep "^#[[:space:]]{1,}[^[:space:]]" /etc/inittab

7. Display /etc/inittab contains lines with a number between two colons

grep ":[0-9]:" /etc/inittab

8. Display the /boot/grub/grub.conf file with one or more lines with blank characters

grep ":[0-9]:" /etc/inittab

9. Displays lines in the /etc/inittab file that start with a number and end with a number that has the same starting number.

grep "^([0-9]).*1$" /etc/inittab

10. Display non-blank lines in the /etc/inittab file

grep -v "^$" /etc/inittab

11. Get the relevant IP address of the current network interface (excluding 127.0.0.1)

ifconfig |grep "inet addr" |grep -v "127.0.0.1"| cut -d: -f2|cut -d" " - f1

ifconfig |grep -A 1 "eth" |grep -o "addr:[0-9.]{1,}"|cut -d: -f2

5. Extended regular expressions

are different from regular expressions Where:

() is replaced with ()

{} is replaced with {}

+ Number of matches, match the character before it one or more times

| or

Example:

appears in the ifconfig result The number is an integer between 1-255

ifconfig|grep --color -E ""


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在Linux中使用grep命令进行日志分析?如何在Linux中使用grep命令进行日志分析?Jul 29, 2023 pm 02:12 PM

如何在Linux中使用grep命令进行日志分析?引言:日志是系统运行过程中产生的重要记录,对于系统运维和故障排查来说,日志分析是一项必不可少的工作。在Linux操作系统中,grep命令是一种强大的文本搜索工具,非常适合用于日志分析。本文将介绍针对日志分析常用的grep命令的使用方法,并提供具体的代码示例。一、grep命令简介grep是Linux系统中的一款文

使用grep命令查询特定首尾文件内容的方法使用grep命令查询特定首尾文件内容的方法Jan 09, 2024 am 09:45 AM

LINUX系统中想要查看文件的内容,该怎么查看指定文件的首尾内容呢?下面我们就来看看使用grep查询指定首尾文件内容的教程。1、打开LINUX,这里我们可以用UBUNTU操作系统。2、找到左边任务栏的TERMINAL,打开终端窗口。3、grep后面加上^,就可以指定某一行的行首。4、grep后面的内容后面加上$,就可以指定某一行的行尾。5、^$可以同时使用,指定某一行首尾必须的内容。6、如果中间有一个字符缺失或者不正确,那么都会查询不到。7、配合-i使用就可以无视大小写的规则。8、还可以配合-v

介绍Linux下使用grep命令显示上下文信息的方法介绍Linux下使用grep命令显示上下文信息的方法Jan 04, 2024 pm 04:41 PM

本文研究的主要是Linux下grep显示前后几行信息的相关内容,具体如下。标准unix/linux下的grep通过下面參数控制上下文grep-C5foofile显示file文件里匹配foo字串那行以及上下5行grep-B5foofile显示foo及前5行grep-A5foofile显示foo及后5行查看grep版本号的方法是grep-V假设想升级,升级的方法:最新的源代码(google或者百度搜索主页),编译安装到某个地方,比方/home/aaa/bin/那么以后用的时候就用/home/aaa/

Linux grep命令的语法是什么Linux grep命令的语法是什么May 14, 2023 pm 10:43 PM

Linuxgrep命令用于查找文件里符合条件的字符串。grep指令用于查找内容包含指定的范本样式的文件,如果发现某文件的内容符合所指定的范本样式,预设grep指令会把含有范本样式的那一列显示出来。若不指定任何文件名称,或是所给予的文件名为-,则grep指令会从标准输入设备读取数据。语法:grep参数:-a或--text:不要忽略二进制的数据。-A或--after-context=:除了显示符合范本样式的那一列之外,并显示该行之后的内容。-b或--byte-offset:在显示符合样式的那一行之前

Linux系统中grep如何使用?Linux系统中grep如何使用?Feb 19, 2024 pm 03:54 PM

  在Linux中,grep是一个非常常见和重要的工具,是每一个专业运维工程师必须掌握的命令,因为通过它可以快速地查找和过滤文件中的内容,那么Linux系统中grep如何使用?下面是常见用法介绍,一起来看看吧。  1、基本用法grep命令主要用于在文件中搜索指定模式的行。例如,要在文件file.txt中查找包含"example"的行,可以使用grep命令来实现。  grep‘example’file.txt  grep将输出所有包含’example’的行。 

grep的正则用法grep的正则用法Nov 16, 2023 am 10:29 AM

grep的正则用法有:1、简单的匹配;2、基本正则表达式;3、元字符的使用;4、锚定字符的使用;5、字符类的使用;6、量词的使用。详细介绍:1、简单的匹配,使用grep命令后跟随要匹配的字符串;2、基本正则表达式,使用-E选项启用扩展的正则表达式功能;3、元字符的使用,在正则表达式中,可以使用一些元字符来表示特定的字符或字符集合;4、锚定字符的使用等等。

linux中grep的用法有哪些linux中grep的用法有哪些Sep 05, 2023 am 11:01 AM

linux中grep的用法有基本用法、忽略大小写、正则表达式搜索、反向搜索、统计匹配行数、递归搜索、输出行号和从输入流中搜索等。详细介绍:1、基本用法,grep命令的基本用法是在文件中查找包含指定模式的行,在文件file.txt中查找包含"example"的行,可以执行该命令“grep "example" file.txt”;2、忽略大小写,默认情况下,grep区分大小写等等。

linux中grep的用法是啥linux中grep的用法是啥Sep 04, 2023 pm 01:55 PM

linux中grep的用法是用来搜索匹配特定模式的文本行,并输出匹配的行。grep命令具有多种选项和用法,可以根据不同的需求进行灵活的搜索和匹配操作。常用选项有:1、-i,搜索时忽略字符的大小写;2、-n,显示匹配的行号;3、-c,统计匹配的行数;4、-r,递归地在指定的目录下搜索文件;5、-l,仅显示包含匹配项的文件名;6、-v,反向匹配,输出不包含匹配项的行等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.