find常规使用方法

Posted qianjingchen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find常规使用方法相关的知识,希望对你有一定的参考价值。

1. find查找包含字符的文件

  如:我想查找包含 server_name www.kalaok.com的配置文件

find . -type f |xargs grep "server_name www.kalaok.com"

2. find查找log文件并清空

  目的:有些日志文件不重要,但是又占用空间,就可以使用此方法:

# 以下两种方法都可以
find /datadisk1 -type f -name "*.log"  -size +500M | xargs -I files sh -c ‘echo "" > $1‘ -- files 
find /datadisk1 -type f -name "*.log"  -size +500M -exec cp /dev/null  \\;

3. 查找空文件或空目录

  查找当前目录下文件大小为0的文件

[root@linux-noed1 ~]# find ./ -type f -size 0
./5230.txt
./.ssh/authorized_keys

  查找空目录,加上-empty

[root@globalloges ~]# find ./ -type d -empty
./.pki/nssdb

  其他用法请自行参考:https://www.cnblogs.com/bianchengzhuji/p/10133821.html

以上是关于find常规使用方法的主要内容,如果未能解决你的问题,请参考以下文章

find查找命令

常规并查集模板

linux find的用法

Find 命令的用法

linux文件夹下递归执行脚本/程序

Excel函数-Excel字符串系列函数之Find查找函数