in reply to Re: Noob File::Find issue
in thread Noob File::Find issue

If I'm interested in knowing where stuff comes from I do exactly the opposite:

use File::Find qw(); ... File::Find::find(...);

By the time I'm a few dozen lines away from the top of the file I've probably completely forgotten where find() came from. A sometimes other benefit of being explicit is that if there is a 'find' in several different modules that are in use then it is clear which one is wanted.

True laziness is hard work