awk区间取值的例子
更新时间:2013年02月04日 18:28:05 作者:
awk区间取值的例子,匹配某一区间内的值,有需要的朋友不妨参考下
有如下的文本内容:
*********
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.
相关文章
CentOS 6.x系统升级Python到2.7版本的Shell脚本分享
这篇文章主要介绍了CentOS 6.x系统升级Python到2.7版本的Shell脚本分享,本文把升级过程总结成一个自动脚本,需要的朋友可以参考下2014-11-11让Linux下的cron以秒为单位执行shell脚本的3种方法
这篇文章主要介绍了让Linux下的cron以秒为单位执行shell脚本的3种方法,cron默认只支持以分为单位执行Shell脚本的,需要的朋友可以参考下2014-10-10linux Shell脚本里面把一个数组传递到awk内部进行处理
这篇文章主要介绍了linux Shell脚本里面把一个数组传递到awk内部进行处理,需要的朋友可以参考下2016-12-12
最新评论