in reply to localtime $mon
#!/usr/bin/perl -w use strict; use POSIX qw|strftime|; my $month = strftime('%B', localtime); print "$month\n"; [download]