How can I check if a Perl module is part of the core - i.e. it is part of the standard installation?
I\'m looking for:
You can use (for example, search for Net::FTP):
Net::FTP
perl -MNet::FTP -e 1
If it doesn't have output, then it's installed.
perldoc perlmodlib perldoc perllocal
A node from perlmonks