I want to search a directory tree, dereferencing symbolic directory links, but not dereferencing symbolic file links. What is the easiest way to accomplish this? The -follow option to find dereferences all symbolic links. It seems like what I want is a new option to find: -follow-dir I want to be able to do this: find . -follow-dir \( -type f -a \! -type l \) Daniel