与其他编程语言一样,SED也提供了循环和分支函数来控制执行流程。在本章中,无涯教程将探索更多有关如何在SED中使用循环和分支的信息。
SED中的循环的工作方式类似于 goto 语句。 SED可以跳到标签所标签的行,然后继续执行其余命令。在SED中,可以如下定义 label
:label :start :end :up
在上面的示例中,冒号(:)之后的名称表示标语法称。
要跳转到特定标签,可以使用 b 命令,后跟标语法称。如果省略标语法称,则SED跳至SED文件的末尾。
让无涯教程编写一个简单的SED脚本来了解循环和分支。在books.txt文件中,有几本书名及其作者的条目。下面的示例将书名及其作者名称合并在一行中,并用逗号分隔。然后搜索模式" Paulo"。如果该模式匹配,则在该行的前面打印一个连字符(-),否则它将跳转到 Print 标签,该标签将打印该行。
[jerry]$sed -n ' h;n;H;x s/\n/,/ /Paulo/!b Print s/^/-/ :Print p' books.txt
执行上述代码后,您将得到以下输出
A Storm of Swords, George R. R. Martin The Two Towers, J. R. R. Tolkien - The Alchemist, Paulo Coelho The Fellowship of the Ring, J. R. R. Tolkien - The Pilgrimage, Paulo Coelho
A Game of Thrones, George R. R. Martin
为了提高可读性,每个SED命令都放在单独的行上。但是,可以选择将所有命令放在一行中,如下所示
[jerry]$sed -n 'h;n;H;x;s/\n/, /;/Paulo/!b Print; s/^/- /; :Print;p' books.txt
执行上述代码后,您将得到以下输出
A Storm of Swords, George R. R. Martin The Two Towers, J. R. R. Tolkien - The Alchemist, Paulo Coelho The Fellowship of the Ring, J. R. R. Tolkien - The Pilgrimage, Paulo Coelho A Game of Thrones, George R. R. Martin
参考链接
https://www.learnfk.com/sed/sed-loops.html
标签:Coelho,教程,Tolkien,无涯,Paulo,SED,Print,Sed,George From: https://blog.51cto.com/u_14033984/8505812