in reply to 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 $ [download]
Cheers,
JohnGG