每日一shell(二)日志IP统计排序

前端之家收集整理的这篇文章主要介绍了每日一shell(二)日志IP统计排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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


文件下载到本地改后缀

@H_301_7@#!/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

原文链接:https://www.f2er.com/bash/389340.html

猜你在找的Bash相关文章