码迷,mamicode.com
首页 > 其他好文 > 详细

awk统计

时间:2016-01-05 11:03:22      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:awk

eg:

    把当前系统使用率最高的前10个命令的命令名输出, 并统计命令使用的次数。

        awk  ‘{comm[$1]++}END{for(i in comm){print i,comm[i]}}‘ /root/.bash_history | sort -rnk 2 | head

    或者

        awk ‘{print $1}‘ /root/.bash_history  | sort | uniq -c |  sort -nr | head


awk统计

标签:awk

原文地址:http://leyin01.blog.51cto.com/9062123/1731599

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!