tags:

views:

95

answers:

2

I know this is really simple... sorry :)

+4  A: 

upgrade.

BTW there is a help command.

musiKk
+4  A: 

An alternative method to using upgrade from the default CPAN shell is to use cpanminus and cpan-outdated.

These are so easy & nimble to use that I hardly ever go back to CPAN shell. To upgrade all your modules in one go is:

cpan-outdated | xargs cpanm


I recommend you install cpanminus like the docs describe:

curl -L http://cpanmin.us | perl - App::cpanminus

And then install cpan-outdated along with all other CPAN modules using cpanm:

cpanm App::cpanoutdated

BTW: If you are using perlbrew then you will need to repeat this for every Perl you have installed under it.

You can find out more about cpanminus and cpan-outdated at the Github repos here:

/I3az/

draegtun