linux 三剑客之 awk

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 三剑客之 awk相关的知识,希望对你有一定的参考价值。

awk 用法:


awk -F  参数用法:指定分隔符


我的源文档:

more domain.log

http://www.baidu.com/index.html
http://www.google.com/1.html
http://www.baidu.com/1.html

[[email protected] ~]# awk -F  "/" ‘{print $3}‘ domain.log
www.baidu.com
www.google.com
www.baidu.com[[email protected] ~]# awk -F  "/" ‘{print $1}‘ domain.log
http:
http:
http:

[[email protected] ~]# awk -F  "/" ‘{print $2}‘ domain.log



[[email protected] ~]# awk -F  "/" ‘{print $4}‘ domain.log
index.html
1.html
1.html


[[email protected] ~]# awk -F  "//" ‘{print $4}‘ domain.log


[[email protected] ~]# awk -F  "//" ‘{print $2}‘ domain.log
www.baidu.com/index.html
www.google.com/1.html
www.baidu.com/1.html



[[email protected] ~]# awk -F  "//" ‘{print $2}‘ domain.log |sort |uniq -c|sort -rn
      2 www.baidu.com/index.html
      1 www.google.com/1.html
      1 www.baidu.com/1.html





以上是关于linux 三剑客之 awk的主要内容,如果未能解决你的问题,请参考以下文章

linux 文本三剑客之awk

不看绝对后悔的Linux三剑客之awk实战精讲

linux 三剑客之 awk

Linux上文本三剑客之awk详解

linux基础学习-18-linux三剑客之awk命令精讲

linux基础篇-文本三剑客之AWK