How long has a module been in Perl core?

▼魔方 西西 提交于 2020-01-21 06:33:08

问题


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.


回答1:


Would Module::CoreList help?

From withing Perl:

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

From the command line:

corelist -d Sys::Hostname


来源:https://stackoverflow.com/questions/7259258/how-long-has-a-module-been-in-perl-core

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!