Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

What Modules are Installed?

by crazyinsomniac (Prior)
on Apr 09, 2001 at 12:16 UTC ( [id://70946]=CUFP: print w/replies, xml ) Need Help??

Based on vroom's suggestion(someplace), this script recurses through the directories in @INC, and prints out a list of files found there. You can also print only files ending in '.pm', that's why the 2 subroutines. I did this recently because my host throws an error at `perldoc perllocal`. (update: hmm, maybe I would have had better luck with `perlman perllocal`)
sub whats_installed { require File::Find; for my $ix(0..$#INC) { print $INC[$ix], "\n"; File::Find::find(sub { print $File::Find::name, "\n"},$INC[$ix +]); } } sub whats_installed2 { require File::Find; for my $ix(0..$#INC) { print $INC[$ix],"\n"; File::Find::find( sub {substr ($_, -3) eq '.pm' && print $File +::Find::name, "\n";}, $INC[$ix]); } }

Replies are listed 'Best First'.
Re: What Modules are Installed?
by mave (Sexton) on Apr 09, 2001 at 13:46 UTC
    Example 12-3 in the Perl cookbook, pmdesc, prints a list of modules, their version, the directory they are installed in, and their descriptions. You can download it from O'Reilly.
    -- mave

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://70946]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-19 13:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found