in reply to how to get the perl installed modules

This code will give you the list of installed modules

use ExtUtils::Installed; my $module; my $inst = ExtUtils::Installed->new(); my (@modules) = $inst->modules(); foreach $module (@modules) { print "$module \n"; }

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.