in reply to File::Find

I find myself using File::Find more and more now that I've got the hang of it. Typically you set up like so:

use File::Find; find( \&do_stuff, $from_dir );
and do_work() is the place where all the real work gets done.

A couple caveats that I've found (the hard way...) about what you can do inside do_work():