awk区间取值的例子
程序员文章站
2023-11-02 13:08:16
有如下的文本内容: ********* 123123 123123 ********* 321321 321321 ********* 456456 456456 ****...
有如下的文本内容:
*********
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.
上一篇: js中的DOM模拟购物车功能
下一篇: 一般企业网站建设需要哪些流程?