I have a master script that does this:
require "filefinder" || die "couldn't open filefinder: $!";
and then performs the subroutines in filefinder. Is there
any way to unrequire, or get rid of the code in filefinder
after I have used it as I needed?
I have to do this so subroutine names won't collide with those
of the library files I also have to add in.
Thanks!