in reply to Installed Module

From "perldoc perlmodlib":
To find out all modules installed on your system, including those with +out documentation or outside the standard release, just use the following command (under the default win32 shell, double qu +otes should be used instead of single quotes). % perl -MFile::Find=find -MFile::Spec::Functions -Tlwe \ 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC'

Replies are listed 'Best First'.
Re^2: Installed Module
by jimrobertsiii (Scribe) on Apr 13, 2005 at 06:48 UTC
    ++ one liner, ++ clever use of File::Find. You gotta love perldoc.

    -Jim