第一道题
时间:2008-01-29 来源:hoog
第一道题
计算Apache日志中各个Refer站点出现的次数,按降序排列输出。如日志:
221.4.220.234 - - [23/Mar/2007:00:00:00 +0800] "GET / HTTP/1.1" 200 14 mod_gzip: 0pct. http://post.baidu.com/f?kz=2249392
cut -d\" -f4 access_log | cut -d\/ -f3 | sort | uniq -c | sed '/-/d' | sort -nr > results
cut -d\" -f4 access_log | cut -d\/ -f3 | sort | uniq -c | sed '/-/d' | sort -nr > results
相关阅读 更多 +