Chinaunix

标题: find -depth有什么意义? [打印本页]

作者: geyun616    时间: 2008-08-05 10:10
标题: find -depth有什么意义?
rt,man find的解释是:
Process each directory’s contents before the directory itself.
先查询目录的内容,然后才是目录本身。

但是我查询一个目录下面的时候,他并不是先把该目录下的所有文件列出来,然后再到子目录里面查询,我想知道这个参数存在还有啥意义?
如:
[root@backup /]# find etc -depth |more
etc/zshrc
etc/auto.smb
etc/nsswitch.conf.rpmnew
etc/virc
etc/ssh/ssh_host_dsa_key.pub
etc/ssh/ssh_host_rsa_key.pub
etc/ssh/ssh_host_rsa_key
etc/ssh/moduli
etc/ssh/ssh_host_key
etc/ssh/ssh_config
etc/ssh/sshd_config
etc/ssh/ssh_host_dsa_key
etc/ssh/ssh_host_key.pub
etc/ssh
作者: 爱知    时间: 2008-08-05 10:15
man find
-depth Process each directory’s  contents  before  the  directory
         itself.
作者: blackold    时间: 2008-08-05 10:15
标题: 回复 #1 geyun616 的帖子
输出正确啊。
比较一下没有-depth选项的情形就清楚了。
作者: geyun616    时间: 2008-08-05 10:37
原帖由 blackold 于 2008-8-5 10:15 发表
输出正确啊。
比较一下没有-depth选项的情形就清楚了。

fstab、hosts之类的文件都在etc目录下啊
作者: blackold    时间: 2008-08-05 10:41
标题: 回复 #4 geyun616 的帖子
把命令输出全部贴上来!
作者: ly5066113    时间: 2008-08-05 10:47
原帖由 geyun616 于 2008-8-5 10:37 发表

fstab、hosts之类的文件都在etc目录下啊


find etc -depth

把more去掉。
作者: waker    时间: 2008-08-05 10:58
mkdir -p testdir/{a,b,c/d}
find testdir  -exec rmdir  {} \;
mkdir -p testdir/{a,b,c/d}
find testdir -depth -exec rmdir  {} \;

比较一下
作者: geyun616    时间: 2008-08-05 11:20
原帖由 waker 于 2008-8-5 10:58 发表
mkdir -p testdir/{a,b,c/d}
find testdir  -exec rmdir  {} \;
mkdir -p testdir/{a,b,c/d}
find testdir -depth -exec rmdir  {} \;

比较一下

谢谢,原来是做这个用的啊
作者: blackold    时间: 2008-08-05 11:23
原帖由 geyun616 于 2008-8-5 11:20 发表

谢谢,原来是做这个用的啊


作者: angeljyt    时间: 2008-08-05 12:36
限制递归子目录的深度, 很有用滴。
作者: blackold    时间: 2008-08-05 12:45
原帖由 angeljyt 于 2008-8-5 12:36 发表
限制递归子目录的深度, 很有用滴。

真是这样?
作者: w3wu    时间: 2008-08-05 14:31
是次序问题吧,不过应用场合有哪些呢?
作者: ivhb    时间: 2008-08-05 22:15
深度优先和广度优先的区别

-depth最重要的一个应用场合是cpio打包。
基本上cpio和find连用的时候,都是-depth的。具体的原因你可以man cpio




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2