每日一shell(二)日誌IP統計排序

統計分析文中的log文件的每一個IP的訪問量並由高到低排序bash   把文件下載到本地改後綴ide #!/bin/bash awk '{print $1}' ip.log | sort | uniq -c | sort -rn | more sh -x uniqip.sh blog + awk '{print $1}' ip.log排序 + sortip + uniq -cit + sort -
相關文章
相關標籤/搜索