每日一shell日志IP统计排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日一shell日志IP统计排序相关的知识,希望对你有一定的参考价值。

统计分析文中的log文件的每个IP的访问量并由高到低排序


技术分享图片?

把文件下载到本地改后缀

#!/bin/bash
awk?‘{print?$1}‘?ip.log?|?sort?|?uniq?-c?|?sort?-rn?|?more

sh -x uniqip.sh?

+ awk ‘{print $1}‘ ip.log

+ sort

+ uniq -c

+ sort -rn

+ more

? ? ?19 59.58.137.166

? ? ?17 64.31.32.131

? ? ?16 210.72.154.243

? ? ?12 36.249.165.107

? ? ?12 27.184.41.29

? ? ?10 120.42.87.69

? ? ?10 112.111.188.62

? ? ? 9 58.246.163.139

? ? ? 8 124.127.244.1


以上是关于每日一shell日志IP统计排序的主要内容,如果未能解决你的问题,请参考以下文章