Docs/linux基础/统计日志中出现次数最多的10个IP.md
2022-10-18 16:59:37 +08:00

82 B

cat access.log | awk '{print $1} | sort | uniq -c | sort -nr | head -n 10'