一个模块在Perl核心中有多长时间了?

时间:2020-12-21 07:15:36

The module I'm actually interested in is Sys::Hostname, but as a more general question, how can I tell how long a particular module has been a core module? I'm curious about this with regards to the Perl version.

我真正感兴趣的模块是Sys :: Hostname,但作为一个更一般的问题,我如何判断特定模块作为核心模块的时间有多长?关于Perl版本我很好奇。

1 个解决方案

#1


21  

Would Module::CoreList help?

Module :: CoreList会有帮助吗?

From withing Perl:

来自Perl:

print Module::CoreList->first_release('Sys::Hostname');

From the command line:

从命令行:

corelist -d Sys::Hostname

#1


21  

Would Module::CoreList help?

Module :: CoreList会有帮助吗?

From withing Perl:

来自Perl:

print Module::CoreList->first_release('Sys::Hostname');

From the command line:

从命令行:

corelist -d Sys::Hostname