in reply to check symbol table w/ dynamic name
my $module = 'Foo::Bar'; my $pm = $module; $pm =~ s{::}{/}g; $pm .= '.pm'; eval { require $pm } or die("Unable to load plugin $module: $@\n"); [download]
Other solutions provided in this thread.