如何查找LINUX的目录

如何查找LINUX的目录

查找文件可以用 find, 查找目录呢?
譬如, 要查找 / 下面所有的叫 opt  的目录.
find / --type d opt
[root@tt08 root]# find / --type d opt
find: invalid predicate `--type'

不行啊, 这个问题困饶了很久了, 呵呵.
[quote:ef8344ee69="BOoRFGOnZ"]find / --type d opt[/quote]


[code:1]find / -type d -name opt[/code:1]
搞定了, 谢谢 !