Trouver la date du jour


use Time::localtime;
$tm = localtime;
($jour, $mois, $annee) = ($tm->mday, $tm->mon, $tm->year);