Cpan modules search from the command line

cpanperl

If I'm not wrong the first step to start with the command line with cpan is next

# perl -MCPAN -e shell

but I don't know what I should do for looking a module, can you help me, what should I write to find next module?:

http://search.cpan.org/~jesus/Spread-3.17.4.4/Spread.pm

Best Answer

From the CPAN shell:

cpan> m Module::Name

This will search for a module.

Source

Related Topic