This is a very small and simple bash script to show a file listing as a tree structure:
$ tree /etc/apache2
+- extra
| +- httpd-autoindex.conf
| +- httpd-dav.conf
| +- httpd-default.conf
| +- httpd-info.conf
| +- httpd-languages.conf
| +- httpd-manual.conf
| +- httpd-mpm.conf
| +- httpd-multilang-errordoc.conf
| +- httpd-ssl.conf
| +- httpd-userdir.conf
| +- httpd-vhosts.conf
+- httpd.conf
+- magic
+- mime.types
+- original
| +- extra
| | +- httpd-autoindex.conf
| | +- httpd-dav.conf
| | +- httpd-default.conf
| | +- httpd-info.conf
| | +- httpd-languages.conf
| | +- httpd-manual.conf
| | +- httpd-mpm.conf
| | +- httpd-multilang-errordoc.conf
| | +- httpd-ssl.conf
| | +- httpd-userdir.conf
| | +- httpd-vhosts.conf
| +- httpd.conf
+- other
| +- php5.conf
+- users
Sometimes a tree just gives better overview than a simple find . -type f.