- or download this
use Date::Simple ('today');
...
my $year = $today->year;
my $month = $today->month;
my $day = $today->day;
- or download this
use Date::Simple ('today');
my $today = today()->month . '.' . today()->day . '.' . today()->year;
- or download this
use Time::Piece;
my $t = localtime;
my $todays_date = $t->mdy('.');
- or download this
use Time::Piece;
my $t = localtime;
my $todays_date = $t->strftime('%d.%m.%y');
- or download this
use Time::Piece;
my $t = localtime;
my $todays_date = $t->strftime('%x');