命令行查询
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 hours7. 指定访问时间查找
$ find -atime n
8. 指定宿主查找
$ find /path -user root
9. 查找并删除
$ find /path -name mytestfile | xargs rm
相关链接: http://www.howtoforge.com/finding-files-on-the-command-line
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/1120/showart_2045203.html
页:
[1]