1、查找 /tmp 目录下名字为 aming开头的所有文件。
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# find / -name 'aming*'
2、搜索tmp目录下所属组group1,所属主user1的文件
[root@localhost tmp]# find /tmp -group group1 -user user1
3、搜索根目录下的 1.txt 2.txt 和 a 目录
[root@localhost /]# find / -name 1.txt -name 2.txt -name a
4、搜索tmp目录下以 a 开头并且以 c 结尾的文件
[root@localhost /]# find /tmp -name 'a*c'
5、搜索 tmp 目录下,不是以 a 开头,并且大小超过100M的文件
find /tmp -name !a* -size +100M