% find . -type d -exec mkdir /usr/project/{} \;
You might have thought this command would make a duplicate set of
(empty) directories, from the current directory and down, starting at
the directory /usr/project. For instance, when
the find command finds the directory
./adir, you would have it execute
mkdir /usr/project/./adir
(mkdir will ignore the dot; the result
is /usr/project/adir).