标签:
head -n 10000 2016_05_23_access_log |grep "/859"
显示前10000行中包含 /859 的记录 增加 |wc -l 则改为输出记录数
cat 2016_05_23_access_log | grep "/859"|sort|uniq|wc -l
显示包含“/859”的记录按降序排序,并输出非重复记录的记录数
linux分析日志的一些常用方法
原文地址:http://www.cnblogs.com/aleafo/p/5530536.html