查看访问最频繁的前100个IPawk '{print $1}' access_temp.log | sort -n |uniq -c | sort -rn | head -n 100统计访问最多的url 前20名cat access_temp.log |awk '{print $7}'| sort|uniq -c| sort -rn| head -20 | more