in reply to Re^2: All CPAN Modules
in thread All CPAN Modules
I usually break it down even further. For example, all modules starting with "Aa", "Ab", etc.#!/usr/bin/perl use strict; use warnings; use CPAN; print $_->install() foreach CPAN::Shell->expand("Module", "/^A/");
And for an entire namespace, say Catalyst:#!/usr/bin/perl use strict; use warnings; use CPAN; print $_->install() foreach CPAN::Shell->expand("Module", "/^Aa/"); print $_->install() foreach CPAN::Shell->expand("Module", "/^Ab/");
print $_->install() foreach CPAN::Shell->expand("Module", "/^Catalyst/");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: All CPAN Modules
by jnbek (Scribe) on Apr 30, 2013 at 05:43 UTC |