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

ip.jpg 

把文件下载到本地改后缀

#!/bin/bashawk '{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