当前位置: 操作系统/服务器>linux
awk区间取值的例子
来源: 互联网 发布时间:2014-10-13
本文导语: 有如下的文本内容: ********* 123123 123123 ********* 321321 321321 ********* 456456 456456 ********* 123123 123123 ******** 匹配123,取出******区间的内容: awk -vRS="*+" '/123/{print RT$0}' file 说明: RS The input record separator, by default a newline(n). RT The record te...
有如下的文本内容:
*********
123123
123123
*********
321321
321321
*********
456456
456456
*********
123123
123123
********
匹配123,取出******区间的内容:
awk -vRS="*+" '/123/{print RT$0}' file
说明:
RS The input record separator, by default a newline(n).
RT The record terminator. Gawk sets RT to the input text that matched the character or regular expression specified by RS.
*********
123123
123123
*********
321321
321321
*********
456456
456456
*********
123123
123123
********
匹配123,取出******区间的内容:
awk -vRS="*+" '/123/{print RT$0}' file
说明:
RS The input record separator, by default a newline(n).
RT The record terminator. Gawk sets RT to the input text that matched the character or regular expression specified by RS.
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。