1. 查找空目录
$ find /path -depth -type d -empty
2. 查找空文件
$ find /path -depth -type f -empty
3. 指定文件名查找
$ find /path -name name_of_file
4. 指定扩展名查找
$ find /path -name "*.given_extension"
5. 指定权限查找
$ find /path -perm -permision_bits
6. 指定修改时间查找
$ find /path -mtime n
- 0 for the last 24 hours
- 1 for the last 48 hours
- 2 for the last 72 hours
7. 指定访问时间查找
$ find -atime n
8. 指定宿主查找
$ find /path -user root
9. 查找并删除
$ find /path -name mytestfile | xargs rm
相关链接:
阅读(851) | 评论(0) | 转发(0) |