Linux grep命令用法

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  首先创建我们练习grep命令时需要用到的demo文件demo_file.

  $ cat demo_file

  THIS LINE IS THE 1ST UPPER CASE LINE IN THIS FILE.

  this line is the 1st lower case line in this file.

  This Line Has All Its First Character Of The Word With Upper Case.

  Two lines above this line is empty.

  And this is the last line.

  1.从单个文件中搜索指定的字串

  grep的基础用法是如下例的从指定的文件中搜索特定的字串。

  语法:

  grep “literal_string” filename

  $ grep “this” demo_file

  this line is the 1st lower case line in this file.

  Two lines above this line is empty.

  And this is the last line.

  2. 在多个文件中检索指定的字串

  语法:

  grep “string” FILE_PATTERN

  先拷贝demo_file为demo_file1.grep的结果在符合条件的行前将包括文件名。当文件名包含元字符时,linux shell会将匹配的所有文件作为输入到grep中去。

  $ cp demo_file demo_file1

  $ grep “this” demo_*

  demo_file:this line is the 1st lower case line in this file.

  demo_file:Two lines above this line is empty.

  demo_file:And this is the last line.

  demo_file1:this line is the 1st lower case line in this file.

  demo_file1:Two lines above this line is empty.

  demo_file1:And this is the last line.

  3. 用 grep -i 进行大小写无关的搜索

  语法:

  grep -i “string” FILE

  也是一个基本用法,对搜索的字串忽略大小写,因此下例中匹配”the”, “THE” and “The”.

  $ grep -i “the” demo_file

  THIS LINE IS THE 1ST UPPER CASE LINE IN THIS FILE.

  this line is the 1st lower case line in this file.

  This Line Has All Its First Character Of The Word With Upper Case.

  And this is the last line.

  4. 使用用正则表达式

  语法:

  grep “REGEX” filename

  如果你能有效地利用正则表达式,这是个很有用的特点。在下面的例子中,搜索全部以”lines”开始以”empty”结束的字串,如搜索”lines[之间任意字]empty” ,并且忽略大小写。

  $ grep -i “lines.*empty” demo_file

  Two lines above this line is empty.

  正则表达式遵循的几个重复的操作

  ? 最多匹配一次

  * 匹配零次或者任意多次

  + 匹配一次以上

  {n} 匹配n次

  {n,} 最少匹配n次

  {,m} 最多匹配m次

  {n,m} 匹配n到m次

  5. 用grep -w搜索整个词,而不是词中的部分字串

  使用-w选项搜索一个单词,并且避免搜索到词中的部分字串。

  下例搜索”is”.如果不加-w选项,将显示”is”, “his”, “this” 等所有包含”is”的行。

  $ grep -i “is” demo_file

  THIS LINE IS THE 1ST UPPER CASE LINE IN THIS FILE.

  this line is the 1st lower case line in this file.

  This Line Has All Its First Character Of The Word With Upper Case.

  Two lines above this line is empty.

  And this is the last line.

  下例使用了-w选项,请注意结果中不包含 “This Line Has All Its First Character Of The Word With Upper Case”, 虽然 “This”中包含”is”.

  $ grep -iw “is” demo_file

  THIS LINE IS THE 1ST UPPER CASE LINE IN THIS FILE.

  this line is the 1st lower case line in this file.

  Two lines above this line is empty.

  And this is the last line.

  6. 使用grep -A, -B and -C显示之前、之后、前后的几行

  当使用grep搜索大文件时,显示匹配行附近的多行数据是一个很有用的功能。

  创建如下文件

  $ cat demo_text

  4. Vim Word Navigation

  You may want to do several navigation in relation to the words, such as:

  * e – go to the end of the current word.

  * E – go to the end of the current WORD.

  * b – go to the previous (before) word.

  * B – go to the previous (before) WORD.

  * w – go to the next word.

  * W – go to the next WORD.

  WORD – WORD consists of a sequence of non-blank characters, separated with white space.

  word – word consists of a sequence of letters, digits and underscores.

  Example to show the difference between WORD and word

  * 192.168.1.1 – single WORD

  * 192.168.1.1 – seven words.

  6.1 显示匹配行之后的N行

  -A

  语法:

  grep -A “string” FILENAME

  下例显示匹配行和之后的3行数据

  $ grep -A 3 -i “example” demo_text

  Example to show the difference between WORD and word

  * 192.168.1.1 – single WORD

  * 192.168.1.1 – seven words.

  6.2显示匹配行之前的N行

  -B

  语法:

  grep -B “string” FILENAME

  下例显示匹配行和之前的2行数据

  $ grep -B 2 “single WORD” demo_text

  Example to show the difference between WORD and word

  * 192.168.1.1 – single WORD

  6.3显示匹配行前后的N行

  -C 显示之前的n行,之后的n行数据。

[1][2]

在向山靠近一点,才发现这座山,好象一位诗人遥望远方,

Linux grep命令用法

相关文章:

你感兴趣的文章:

标签云: