我正在创建一个连接到服务器的脚本,并将输出转储到临时文件.我想在脚本中使用sed从临时文件中获取特定信息.输出将始终具有80个字符的虚线,然后是我想要的信息,然后是Disconnected语句.
我有一个正则表达式工作,如果它只是一行,问题是我如何组合换行符?
正则表达式
-\{80\}[\r\n]*\(.*\)[\r\n]\{4\}Disconnected
... -------------------------------------------------------------------------------- The information that I want to get can be a single line or multiple lines. Another line to grab. And this should be caught as well. Disconnected ...
期望的输出
The information that I want to get can be a single line or multiple lines. Another line to grab. And this should be caught as well.
首先使用’-n’标志来抑制自动输出.接下来使用sed地址引用您感兴趣的部分(从破折号“—”到具有“Disconnected”一词的行).最后打印模式空间(所有模式空间,因为你对它里面的所有内容感兴趣).
原文链接:https://www.f2er.com/bash/385634.html~$sed -n '/^---*/,/Disconnected/{p}' inputfile
由于LF4请求从结果中删除带有破折号的行而编辑.
使用“地址”,您可以引用单个模式空间.因此,您可以使用这些单独的模式空间执行任何操作.包括regexp删除行.在该示例中,该命令从模式空间中删除由破折号形成的线,从而产生您正在寻找的输出:
~$sed -n '/^---*/,/Disconnected/{/^---*/d;p}' inputfile
HTH