Home php教程 PHP开发 Grep usage summary

Grep usage summary

Dec 13, 2016 pm 02:36 PM
grep

Use grep to search file contents - fast and convenient

1. Function
The grep command can specify a file to search for specific content and output the lines containing these contents to the standard output. The full name of grep is Global Regular Expression Print, which means the global regular expression version. Its usage permissions are for all users.
2. Format
grep [options]

Basic format
grep pattern [file...]
(1)grep search string [filename]
(2)grep regular expression [filename]
Search all in the file Where pattern appears, pattern can be either the string to be searched or a regular expression.
Note: It is best to use double quotes when entering the string to be searched/and when using regular expressions for pattern matching, Note the use of single quotes
3. Main parameters
[options] Main parameters:
-c: Only output the count of matching lines.
-I: Case-insensitive (only applicable to single characters).
-h: Do not display file names when querying multiple files.
-l: When querying multiple files, only the file names containing matching characters will be output.
-n: Display matching lines and line numbers.
-s: Do not display error messages that do not exist or have no matching text.
-v: Display all lines that do not contain matching text.

Note: n will be invalid when there is c
Main parameters of pattern regular expression: Application of regular expression (Note: It is best to enclose the regular expression in single quotes)
: The principle of ignoring special characters in regular expressions There is meaning.
^: Matches the starting line of the regular expression.
$: Matches the end line of the regular expression.
<: Start from the line matching the regular expression.
>: Go to the end of the line matching the regular expression.
[ ]: A single character, such as [A], that is, A meets the requirements.
[-]: Range, such as [A-Z], that is, A, B, C to Z all meet the requirements.
. : All single characters.
*: There are characters, and the length can be 0.


There are some interesting command line parameters below:

grep -i pattern files: Search case-insensitively. The default is case-sensitive,

grep -l pattern files: only match file names are listed,

grep -L pattern files: list unmatched file names,

grep -w pattern files: only match whole words , rather than part of the string (such as matching 'magic', not 'magical'),

grep -C number pattern files: matching contexts display [number] lines respectively,

grep pattern1 | pattern2 files: display matching Lines of pattern1 or pattern2,

grep pattern1 files | grep pattern2: Display lines that match both pattern1 and pattern2.

grep -n pattern files will display line number information

grep -c pattern files will find the total number of lines


Regular expressions are a very important concept in Linux/Unix systems. A regular expression (also called "regex" or "regexp") is a pattern that can describe a type of string. If a string can be described by a regular expression, we say that the character matches the regular expression. This is similar to how users in DOS can use the wildcard "*" to represent any character. On Linux systems, regular expressions are often used to find patterns in text, as well as perform "search-replace" operations and other functions on text.



1. grep search string [filename]

Create a file named grep.txt with the following text:

I like golf.

Golf is played on grass.

I created gilf.

1. Search all instances of the string golf in the grep.txt file and output the lines containing the string

grep golf grep.txt

I like golf.

grep -n "golf" grep.txt

1:I like golf.

2. grep regular expression [filename]

grep -n '[gG]olf' grep.txt

1:I like golf.

2:Golf is played on grass.



Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use grep command for log analysis in Linux? How to use grep command for log analysis in Linux? Jul 29, 2023 pm 02:12 PM

How to use grep command for log analysis in Linux? Introduction: Logs are important records generated during system operation. For system operation, maintenance and troubleshooting, log analysis is an essential task. In the Linux operating system, the grep command is a powerful text search tool that is very suitable for log analysis. This article will introduce how to use the grep command commonly used for log analysis and provide specific code examples. 1. Introduction to grep command grep is a file in Linux system

How to use the grep command to query the contents of a specific first and last file How to use the grep command to query the contents of a specific first and last file Jan 09, 2024 am 09:45 AM

If you want to view the contents of a file in a LINUX system, how can you view the first and last contents of a specified file? Let's take a look at the tutorial on using grep to query the contents of the specified first and last files. 1. Open LINUX, here we can use the UBUNTU operating system. 2. Find TERMINAL on the left taskbar and open the terminal window. 3. Add ^ after grep to specify the beginning of a certain line. 4. Add $ after the content after grep to specify the end of a certain line. 5. ^$ can be used at the same time to specify the necessary content at the beginning and end of a certain line. 6. If a character in the middle is missing or incorrect, it will not be queried. 7. Use with -i to ignore the case rules. 8. You can also use -v

Introducing how to use the grep command to display context information under Linux Introducing how to use the grep command to display context information under Linux Jan 04, 2024 pm 04:41 PM

This article mainly studies the related content of grep displaying several lines of information before and after under Linux, as follows. Grep under standard unix/linux controls the context through the following parameters. grep-C5foofile displays the line matching the foo string in the file file and the upper and lower 5 lines. grep-B5foofile displays foo and the first 5 lines. grep-A5foofile displays foo and the last 5 lines to view the grep version. The method of numbering is grep-V. If you want to upgrade, the upgrade method: the latest source code (google or Baidu search homepage), compile and install it somewhere, such as /home/aaa/bin/, then use / when using it in the future. home/aaa/

What is the syntax of Linux grep command What is the syntax of Linux grep command May 14, 2023 pm 10:43 PM

The Linuxgrep command is used to find strings that meet conditions in files. The grep command is used to find files whose content contains the specified template style. If the content of a file is found to match the specified template style, the default grep command will display the column containing the template style. If no file name is specified, or the file name is -, the grep command reads data from the standard input device. Syntax: grep parameters: -a or --text: Do not ignore binary data. -A or --after-context=: In addition to displaying the column that conforms to the template style, and display the content after the line. -b or --byte-offset: before displaying the line that matches the style

How to use grep in Linux system? How to use grep in Linux system? Feb 19, 2024 pm 03:54 PM

In Linux, grep is a very common and important tool. It is a command that every professional operation and maintenance engineer must master, because it can quickly find and filter the contents of files. So how to use grep in Linux system? The following is Let’s take a look at the common usage introduction. 1. Basic usage The grep command is mainly used to search for lines of a specified pattern in files. For example, to find the line containing "example" in the file file.txt, you can use the grep command. grep 'example' file.txt grep will output all lines containing 'example'.​

What is the usage of grep in linux? What is the usage of grep in linux? Sep 04, 2023 pm 01:55 PM

The usage of grep in Linux is to search for lines of text that match a specific pattern and output the matching lines. The grep command has a variety of options and usages, allowing flexible search and matching operations according to different needs. Commonly used options are: 1. -i, ignore the case of characters when searching; 2. -n, display matching line numbers; 3. -c, count the number of matching lines; 4. -r, recursively search in the specified directory Search files under; 5. -l, only display file names containing matching items; 6. -v, reverse matching, output lines that do not contain matching items, etc.

What are the uses of grep in linux? What are the uses of grep in linux? Sep 05, 2023 am 11:01 AM

The usage of grep in Linux includes basic usage, ignoring case, regular expression search, reverse search, counting the number of matching lines, recursive search, output line number and searching from the input stream, etc. Detailed introduction: 1. Basic usage. The basic usage of the grep command is to find lines containing the specified pattern in the file. To find the lines containing "example" in the file file.txt, you can execute the command "grep "example" file.txt "; 2. Ignore case. By default, grep is case-sensitive and so on.

What does the Linux grep command do? how to use? What does the Linux grep command do? how to use? Feb 19, 2024 pm 02:33 PM

When performing Linux system maintenance, if you want to quickly search for what you need in text, the grep command is a very good choice. It is mainly used to find qualified strings in files, thereby saving time and improving work efficiency. So how to use the grep command in Linux system? Let’s take a look at the detailed introduction. The Linux grep command is used to find strings that meet conditions in files. The grep command is used to search for file contents containing a specified style and display the lines containing the style. If no filename is specified, grep will read data from standard input. grep is a powerful text search tool that helps users quickly locate key information. Syntax grep[-ab

See all articles