https://www.runoob.com/linux/linux-comm-awk.html awk命令手册

以分析nginx的access.log日志文件为例

1.分析网站QPS

cat access.log | awk \'{print $4}\' | uniq -c | sort -n

2.分析网站中ip请求次数

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