#使用这个是为了查看异常登录地址 yum -y install whois whois 119.53.224.203
#以下是本人开发中常用到的 一、du命令 du命令是查看使用空间的,但是与df命令不同的是Linux du命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的。 du ...
#可以监听整个文件,也可根据关键词监听 cd /www/payment/runtime/logs/ tail -f xxx.log #监听整个文件 tail -f xxx.log | grep 'xxx' #根据关键词监听
#如统计文件api_error.log中error关键词出现的次数 grep -o 'error' /www/payment/runtime/logs/api_error.log | wc -l
脚本一 grep "23/Apr/2020" nowcoder.txt | awk '{print $1}' | sort | uniq -c | sort -nr | sed 's/[ \t]*//' 首先使用 grep 命令检索到2020年4月23号的记录行;接着使用...
在进行服务器管理时,要进行日志分析的 统计每秒钟的最高的并发 awk '{print $6}' /data/logs/access.log | sort | uniq -c | sort -nr -k1 | head -n 1 在这个命令中把 he...
https://blog.csdn.net/duanph/article/details/124751238
这个是chinaunix论坛上看到的问题,也测试一下. 有原始文件 [/tmp/test]# cat tt10 N1 5 6 8 4 1 2 1 0 ...