in reply to The day of today

you could also use strftime from POSIX module

use POSIX qw (strftime); my $now_string = strftime "%H:%M:%S %a %d/%m/%Y", localtime;

This was described already in this node strftime reference for Win32.