in reply to Build in modules in perl

How to see all the included module names , in a current package?

Read Simple Module Tutorial, to learn the perl terminology. Then use Module::Info to get the info you want.

Replies are listed 'Best First'.
Re^2: Build in modules in perl
by aantonyselvam (Beadle) on Feb 09, 2011 at 12:36 UTC

    Use the following script it will display all the modules you have installed.

    perl -MFile::Find=find -MFile::Spec::Functions -Tlwe \ 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => +1 }, @INC'
      That has nothing to do with the question, stay on topic