How do I get a list of installed CPAN modules?

后端 未结 29 2134
盖世英雄少女心
盖世英雄少女心 2020-12-04 07:41

Aside from trying

perldoc 

individually for any CPAN module that takes my fancy or going through the file system and loo

29条回答
  •  借酒劲吻你
    2020-12-04 07:54

    On Linux/Unix I use this simple command:

    perl -e 'print qx/find $_ -name "*.pm"/ foreach ( @INC );' 
    

    It scans all folder in @INC and looks for any *.pm file.

提交回复
热议问题