Linux记录-筛选日志sed、find、tail,du命令

时间:2018-04-11 16:14:41   收藏:0   阅读:1150

1.查看某一段时间的日志

#cat hdfs-audit.log | sed -n ‘/2018-04-11 10:00:00/,/2018-04-11 10:01:00/ p‘ | more   ---直接使用时间段

#cat hdfs-audit.log | sed -n ‘/2018-04-11 09:[0-9][0-9]/,/2018-04-11 10:[0-9]:[0-9]/p‘ | more   ---使用正则表达式

#sed查看log时间段(sed -n ‘/开始/,/结束/p‘ p是打印出来,d是删除)

2.查看日志末尾100行

#tail -f -n 100 hdfs-audit.log

3.删掉文件夹大于1G的文件

#find /home/test/ -size +1024M  -exec rm {} \ 

4.查看TCP连接类型

#netstat -an|awk ‘/tcp/ {print $6}‘|sort|uniq -c

5.统计文件字节数

wc -c hdfs-audit.log

6.查看文件以及文件夹大小

du -ah --max-depth=1 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!