关于正则表达式:我可以在我想要的字符串之前或之后grep一定数量的行吗?

Can I grep a certain amount of lines before or after a string I want?

本问题已经有最佳答案,请猛点这里访问。

假设我正在使用lshw来获取系统内存,我希望它打印出来以便我只获得系统内存选项。 你能指定在grep中字符串之前或之后打印多少行? 下面输出lshw命令的片段以供参考:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 description: Computer
    width: 64 bits
  *-core
       description: Motherboard
       physical id: 0
     *-memory
          description: System memory
          physical id: 0
          size: 23GiB
     *-cpu
          product: Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz
          vendor: Intel Corp.
          physical id: 1
          bus info: cpu@0
          capacity: 1896MHz
          width: 64 bits

我可以使用lshw | grep size | awk -F: '{print $2}'来获取23 GiB部分,但我想知道是否有办法用grep获取一个文本块来获取完整的内存部分。


@L3viathan帮助我搞清楚了。 Grep有一个-A标志,允许您指定字符串后所需的行数。 您还可以使用-B标志指定字符串之前所需的行数。

例子之后:

1
lshw | grep *-memory -A 3

输出:

1
2
3
4
     *-memory
      description: System memory
      physical id: 0
      size: 23GiB

例子之前:

1
lshw | grep size -B 3

输出:

1
2
3
4
     *-memory
      description: System memory
      physical id: 0
      size: 23GiB