使用Shell分析Nginx Access日志:
找出访问最多的前50个页面 cat site.log | grep "18/Jul/2013" | grep -v "/wp-content" |grep -v "/wp-includes"|grep "html" |awk '{print $7}' | sort | uniq -c | sort -nr | head -n 50 找出访问最频繁的时段 awk '{print $4}' site.log | grep "18/Jul/2013" |cut -c 14-18|sort|uniq -c|sort -nr|head
版权声明:原创作品,如需转载,请注明出处。否则将追究法律责任
本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1278719