find 命令可以用来查找文件和目录
find 的一般格式为: find 查找范围 查找条件
按名称查找
1 | [root@ceph-node3 ~]# find /etc/ -name *net.conf |
按深度查找
最大深度
1 | [root@ceph-node3 ~]# find /etc -maxdepth 1 -name *.conf |
最小深度
1 | [root@ceph-node3 ~]# find /etc -mindepth 4 -name *.conf |
按用户查找
1 | [root@ceph-node3 ~]# find /etc -user root -name *net.conf |
按文件大小查找
小于20k
1 | [root@ceph-node3 ~]# find /etc -size -20k -name *net.conf |