in reply to Re: Dateless in Denver...
in thread Dateless in Denver...

The '+' character is how the date command recognizes the format, POSIX::strftime will just return a literal '+' character so:
use POSIX 'strftime'; my $mdyt = strftime '%m/%d/%Y %H:%M:%S', localtime;