1、查看文件中的关键字(大文件、关键字多、需要查看最后一次)
grep -C 10 'updatePassword' access.log |tail -21
2、curl
crul http://127.0.0.1:9971/wucss/upload?startDate=2021-10-15\&endDate=2021-10-22
注意:&符号需要用\转义符
3、查看连接数使用情况
netstat -nat | awk '{print$5}'| awk -F : '{print$1}'| sort | uniq -c | sort -rn
4、统计的是指定进程的文件句柄打开数
lsof -p PID |wc -l
lsof命令的具体使用方法参考 https://blog.youkuaiyun.com/qq_27870421/article/details/92803453