From: Mark Weiser <mark%umcp-cs at udel-relay> Lets get our terms straight. Without -depth, find does a "pre-order" search. That is, it visits the parent before visiting the childen. With -depth, it does a "post-order" search, visiting all the children and only then visiting the parent.