📜  流编辑器-模式缓冲区

📅  最后修改于: 2020-10-16 06:13:50             🧑  作者: Mango


我们对任何文件执行的基本操作之一就是显示其内容。为此,我们可以使用print命令来打印模式缓冲区的内容。因此,让我们进一步了解模式缓冲区

首先创建一个包含行号,书名,作者和页数的文件。在本教程中,我们将使用此文件。您可以根据需要使用任何文本文件。我们的文本文件将如下所示:

[jerry]$ vi books.txt 
1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho,288 
6) A Game of Thrones, George R. R. Martin, 864

现在,让我们打印文件内容。

[jerry]$ sed 'p' books.txt

执行以上代码后,将产生以下结果。

1) A Storm of Swords, George R. R. Martin, 1216 
1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 
6) A Game of Thrones, George R. R. Martin, 864

您可能想知道为什么每一行都显示两次。让我们找出答案。

您还记得SED的工作流程吗?默认情况下,SED打印模式缓冲区的内容。此外,我们在命令部分中明确包含了一条打印命令。因此,每行打印两次。但是不用担心。 SED具有-n选项,以禁止模式缓冲区的默认打印。以下命令说明了这一点。

[jerry]$ sed -n 'p' books.txt 

执行以上代码后,将产生以下结果。

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 

恭喜你!我们得到了预期的结果。默认情况下,SED在所有行上运行。但是我们可以强制SED仅在某些线路上运行。例如,在下面的示例中,SED仅在第三行上运行。在此示例中,我们在SED命令之前指定了地址范围。

[jerry]$ sed -n '3p' books.txt 

执行以上代码后,将产生以下结果。

3) The Alchemist, Paulo Coelho, 197 

此外,我们还可以指示SED仅打印某些行。例如,下面的代码打印2到5的所有行。在这里,我们使用逗号(,)运算符指定地址范围。

[jerry]$ sed -n '2,5 p' books.txt 

执行以上代码后,将产生以下结果。

2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288

还有一个特殊字符Dollar($)代表文件的最后一行。因此,让我们打印文件的最后一行。

[jerry]$ sed -n '$ p' books.txt 

执行以上代码后,将产生以下结果。

6) A Game of Thrones, George R. R. Martin, 864 

但是,我们也可以使用Dollar($)字符指定地址范围。下面的示例通过第3行打印到最后一行。

[jerry]$ sed -n '3,$ p' books.txt 

执行以上代码后,将产生以下结果。

3) The Alchemist, Paulo Coelho, 197 4) The Fellowship of the Ring, J. R. R. Tolkien, 432 5) The Pilgrimage, Paulo Coelho, 288 6) A Game of Thrones, George R. R. Martin, 864 

我们学习了如何使用comma(,)运算符指定地址范围。 SED支持两个以上的运算符,可用于指定地址范围。首先是plus(+)运算符,它可以与comma(,)运算符。例如, M将从行号M开始打印n行。听起来令人困惑?让我们用一个简单的例子来检查它。以下示例从第2行开始打印接下来的4行。

[jerry]$ sed -n '2,+4 p' books.txt 

执行以上代码后,将产生以下结果。

2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 

(可选)我们还可以使用tilde(〜)运算符指定地址范围。它使用M〜n形式。它指示SED应该从行号M开始并每隔n(th)行处理一次。例如, 50〜5与行号50、55、60、65等匹配。让我们仅从文件中打印奇数行。

[jerry]$ sed -n '1~2 p' books.txt 

执行以上代码后,将产生以下结果。

1) A Storm of Swords, George R. R. Martin, 1216 
3) The Alchemist, Paulo Coelho, 197 
5) The Pilgrimage, Paulo Coelho, 288

以下代码仅打印文件中的偶数行。

[jerry]$ sed -n '2~2 p' books.txt 

执行以上代码后,将产生以下结果。

2) The Two Towers, J. R. R. Tolkien, 352 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
6) A Game of Thrones, George R. R. Martin, 864