题解 | #nginx日志分析1-IP统计#
nginx日志分析1-IP统计
http://www.nowcoder.com/practice/3f2f45c74a1b415db17234f9cfd51469
grep "23/Apr/2020" nowcoder.txt | awk '{print $1}' | sort | uniq -c | sort -r | awk '{print $1,$2}'
nginx日志分析1-IP统计
http://www.nowcoder.com/practice/3f2f45c74a1b415db17234f9cfd51469
grep "23/Apr/2020" nowcoder.txt | awk '{print $1}' | sort | uniq -c | sort -r | awk '{print $1,$2}'
相关推荐