How do I update all my CPAN modules to their latest versions?

后端 未结 5 686
一生所求
一生所求 2020-12-12 09:59

How do I update all my CPAN modules to their latest versions?

5条回答
  •  死守一世寂寞
    2020-12-12 10:20

    An easy way to upgrade all Perl packages (CPAN modules) is the following way:

    cpan upgrade /(.*)/
    

    cpan will recognize the regular expression like this and will update/upgrade all packages installed.

提交回复
热议问题