Il lun, 2005-04-11 alle 01:36, Chris ha scritto:
> Is there a list somewhere of perl modules installed such as for rpms 
> in /var/log/rpmpkgs which I assume is a listing of rpm packages I've 
> installed.

for an alphabetic list of module with full path you can try this script

the author page is here
http://www.perl.it/documenti/faq/view.html?pag=3&faq=4&lng=en



#!/usr/bin/perl

use File::Find;
    my @file;
    find sub { push @file, $File::Find::name if -f _ && /\.pm$/ },
         @INC;
        print join "\n", @file;



if you want , there is a tool named perl-pmtools packaged 
http://language.perl.com/misc/pmtools-1.00.tar.gz.

and a Fedora rpm too (for mandrake don't ask me, request it to
Club-contrib packagers)
http://rpmfind.net/linux/RPM/fedora/3/i386/perl-pmtools-1.00-1.noarch.html


--
Regards, 
Francesco



____________________________________________________
Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com
____________________________________________________

Reply via email to