in reply to Copying of installed PMs

Most modules should install a .packlist file in the perl lib dir. If you are on a unix/linux platform, do something like:

for i in `find /usr/lib/perl5 -name .packlist`;do cat >> all_packlists.txt;done


The use zip like this:

cat all_packlists.txt | zip -@ -r perl_mod.zip

Replies are listed 'Best First'.
Re: Find the .packlists
by Anonymous Monk on Jan 09, 2001 at 02:43 UTC
    oops, that dor loop was wrong:

    >> for i in `find /usr/lib/perl5 -name .packlist`;do cat >> all_packlists.txt;done
    --
    << for i in `find /usr/lib/perl5 -name .packlist`;do cat $i >> all_packlists.txt;done