One thing at a time all the time!

Welcome to Rocteur
Friday, March 29 2024 @ 01:59 PM CET

How do I tell if a Perl Module is Perl Core or not

(1) see if it's listed in "perldoc perlmodlib". If it is, it's core.
(2) use Module::ScanDeps (from the CPAN) on your programs, and they'll
tell you how many non-core modules you've included.
(3) use "perl -MCPAN -eshell", and its "m" command to get info. If it's
core, it'll be inside one of the distro files, otherwise it'll be
in its own CPAN file.

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095

Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

FAQ Manager » Perl » How do I tell if a Perl Module is Perl Core or not