Grep Cheat Sheet - 快速参考指南,收录常用语法、命令与实践。
Search standard output (i.e. a stream of text)
$ grep [options] search_string
Search for an exact string in file:
$ grep [options] search_string path/to/file
Print lines in myfile.txt containing the string "mellon"
$ grep 'mellon' myfile.txt
Wildcards are accepted in filename.
| Option | Example | Operation |
|---|---|---|
-i | grep -i ^DA demo.txt | Forgets about case sensitivity |
-w | grep -w "of" demo.txt | Search only for the full word |
-A | grep -A 3 'Exception' error.log | Display 3 lines after matching string |
-B | grep -B 4 'Exception' error.log | Display 4 lines before matching string |
-C | grep -C 5 'Exception' error.log | Display 5 lines around matching string |
-r | grep -r 'cheatsheets.zip' /var/log/nginx/ | Recursive search (within subdirs) |
-v | grep -v 'warning' /var/log/syslog | Return all lines which don't match the pattern |
-e | grep -e '^al' filename | Use regex (lines starting with 'al') |
-E | grep -E 'ja(s|cks)on' filename | Extended regex (lines containing jason or jackson) |
-c | grep -c 'error' /var/log/syslog | Count the number of matches |
-l | grep -l 'robot' /var/log/* | Print the name of the file(s) of matches |
-o | grep -o search_string filename | Only show the matching part of the string |
-n | grep -n "go" demo.txt | Show the line numbers of the matches |
Please refer to the full version of the regex cheat sheet for more complex requirements.
| - | - |
|---|---|
| . | Any character. |
? | Optional and can only occur once. |
* | Optional and can occur more than once. |
+ | Required and can occur more than once. |
| - | - |
|---|---|
{n} | Previous item appears exactly n times. |
{n,} | Previous item appears n times or more. |
{,m} | Previous item appears n times maximum. |
{n,m} | Previous item appears between n and m times. |
| - | - |
|---|---|
[:alpha:] | Any lower and upper case letter. |
[:digit:] | Any number. |
[:alnum:] | Any lower and upper case letter or digit. |
[:space:] | Any whitespace. |
| - | - |
|---|---|
[A-Za-z] | Any lower and upper case letter. |
[0-9] | Any number. |
[0-9A-Za-z] | Any lower and upper case letter or digit. |
^ | Beginning of line. |
$ | End of line. |
^$ | Empty line. |
\< | Start of word. |
\> | End of word. |
地址
Level 10b, 144 Edward Street, Brisbane CBD(Headquarter)Level 2, 171 La Trobe St, Melbourne VIC 3000四川省成都市武侯区桂溪街道天府大道中段500号D5东方希望天祥广场B座45A13号Business Hub, 155 Waymouth St, Adelaide SA 5000Disclaimer
JR Academy acknowledges Traditional Owners of Country throughout Australia and recognises the continuing connection to lands, waters and communities. We pay our respect to Aboriginal and Torres Strait Islander cultures; and to Elders past and present. Aboriginal and Torres Strait Islander peoples should be aware that this website may contain images or names of people who have since passed away.
匠人学院网站上的所有内容,包括课程材料、徽标和匠人学院网站上提供的信息,均受澳大利亚政府知识产权法的保护。严禁未经授权使用、销售、分发、复制或修改。违规行为可能会导致法律诉讼。通过访问我们的网站,您同意尊重我们的知识产权。 JR Academy Pty Ltd 保留所有权利,包括专利、商标和版权。任何侵权行为都将受到法律追究。查看用户协议
© 2017-2025 JR Academy Pty Ltd. All rights reserved.
ABN 26621887572