Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use grep command in Linux system

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to use the grep command in the Linux system, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

Grep command is a powerful text search tool in Linux system. It can use regular expressions to search text and print matching lines. The full name of grep is Global Regular Expression Print, which represents the global regular expression version, and its permission is for all users.

Example 1 looks up the pattern (word) in the file

Look for the word "linuxtechi" in the / etc/passwd file

Root@Linux-world:~# grep linuxtechi / etc/passwdlinuxtechi:x:1000:1000:linuxtechi,:/home/linuxtechi:/bin/bashroot@Linux-world:~# example 2 looks for the pattern root@Linux-world:~# grep linuxtechi / etc/passwd / etc/shadow / etc/gshadow / etc/passwd:linuxtechi:x:1000:1000:linuxtechi in multiple files : / home/linuxtechi:/bin/bash / etc/shadow:linuxtechi:$6$ DdgXjxlM$4flz4JRvefvKp0DG6re:16550:0:99999:7:::/etc/gshadow:adm:*::syslog Linuxtechi / etc/gshadow:cdrom:*::linuxtechi / etc/gshadow:sudo:*::linuxtechi / etc/gshadow:dip:*::linuxtechi / etc/gshadow:plugdev:*::linuxtechi / etcGShadowGRAPHART / etc/gshadow:sudo:*::linuxtechi / LPADMIN / EtcUniv / EtcAccording to the file name of the file containing the specified mode, the-L parameter is used to list the filename of the specified mode. : ~ # grep-l linuxtechi / etc/passwd / etc/shadow / etc/fstab / etc/mtab / etc/passwd / etc/shadowroot@Linux-world:~# example 4 uses the-N parameter Find the specified pattern in the file and display the line number of the matching line root@Linux-world:~# grep-n linuxtechi / etc/passwd 39RLINUX techiPart x1000Rd 1000 LINUX techiPhillips LINUX TechiPhones, HomeCome LINUX techiPUBING BHROOTY LinuxLINUX worlds # example 5 Lines using the-V parameter output does not contain the specified pattern

Output all lines in the / etc/passwd file without the word "linuxtechi"

Root@Linux-world:~# grep-v linuxtechi / etc/passwd example 6 use the ^ symbol to output all lines beginning with a specified pattern

The Bash script treats the ^ symbol as a special character and is used to specify the beginning of a line or word. For example, all lines in the output / etc/passes file that start with "root"

Root@Linux-world:~# grep ^ root / etc/passwd root:x:0:0:root:/root:/bin/bashroot@Linux-world:~# example 7 uses the $symbol to output all lines ending in the specified pattern

Output all lines in the / etc/passwd file that end with "bash"

Root@Linux-world:~# grepbash$ / etc/passwd root:x:0:0:root:/root:/bin/bash linuxtechi:x:1000:1000:linuxtechi,:/home/linuxtechi:/bin/bashroot@Linux-world:~#

The Bash script treats the dollar ($) symbol as a special character and is used to specify the end of a line or word.

Example 8 uses the-R parameter to recursively find a specific pattern root@Linux-world:~# grep-r linuxtechi / etc/ / etc/subuid:linuxtechi:100000:65536 / etc/group:adm:x:4:syslog Linuxtechi / etc/group:cdrom:x:24:linuxtechi / etc/group:sudo:x:27:linuxtechi / etc/group:dip:x:30:linuxtechi / etc/group:plugdev:x:46:linuxtechi / etc/group:lpadmin:x:115:linuxtechi / etc/group:linuxtechi:x:1000: / etc/group:sambashare:x:131:linuxtechi / etc/passwd-:linuxtechi:x:1000:1000:linuxtechi : / home/linuxtechi:/bin/bash / etc/passwd:linuxtechi:x:1000:1000:linuxtechi,:/home/linuxtechi:/bin/bash....

The above command will recursively look for the word "linuxtechi" in the / etc directory

Example 9 uses Grep to find all blank lines in the file root@Linux-world:~# grep ^ $/ etc/shadowroot@Linux-world:~#

Since there are no blank lines in the / etc/shadow file, there is no output

Example 10 uses the-I parameter lookup mode

The-I argument of the grep command ignores the case of characters when looking for them. Let's look at an example and look for the word "LinuxTechi" in the paswd file.

Nextstep4it@localhost:~$ grep-I LinuxTechi / etc/passwd linuxtechi:x:1001:1001::/home/linuxtechi:/bin/bashnextstep4it@localhost:~$ example 11 use the-E parameter to find multiple patterns

For example, I want to look for the words' linuxtechi' and 'root' in a grep command, and using the-e parameter, we can find multiple patterns

Root@Linux-world:~# grep-e "linuxtechi"-e "root" / etc/passwd root:x:0:0:root:/root:/bin/bash linuxtechi:x:1000:1000:linuxtechi,:/home/linuxtechi:/bin/bashroot@Linux-world:~# example 12 use-F files to specify the mode to be found

First, create a search pattern file "grep_pattern" in the current directory. I want the following input in the file

Root@Linux-world:~# cat grep_pattern ^ linuxtechi root false$root@Linux-world:~#

Now, try using the grep_pattern file to search

Root@Linux-world:~# grep-f grep_pattern / etc/passwd example 13 uses the-C parameter to calculate the number of pattern matches

Continuing with the example above, we use the-c command in the grep command to calculate the number of matches to the specified pattern

Root@Linux-world:~# grep-c-f grep_pattern / etc/passwd 22root@Linux-world:~# example 14 output matches the N lines before or after the specified pattern line

A) use the-B parameter to output the first four lines of the matching line

Root@Linux-world:~# grep-B 4 "games" / etc/passwd

B) use the-A parameter to output the last 4 lines of the matching line

Root@Linux-world:~# grep-A 4 "games" / etc/passwd

C) use the-C parameter to output 4 rows before and after matching lines

Root@Linux-world:~# grep-C 4 "games" / etc/passwd

Thank you for reading this article carefully. I hope the article "how to use grep commands in Linux system" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report