in reply to Re: convert month number to month name
in thread convert month number to month name

POSIX is a core module so strftime() is available without the need to install any modules from CPAN.

$ perl -E ' > use POSIX qw{ strftime }; > say strftime q{%b}, localtime( time() );' Aug $

Cheers,

JohnGG