主题
:
写一句脚本,分析apache的access.log,得出访问量最高文件前5名
查看单个帖子
2008-05-05, 15:04
#
2
(
页面定位
)
ym0723
新手上路
注册日期: 2008-05-05
帖子: 1
cat access.log | awk '{print $7}' | sort | uniq -c | sort -rn | head -5
ym0723
查看公开信息
发送悄悄话给 ym0723
查找 ym0723 发表的更多帖子