Help for this page
use Time::Piece; my $date = localtime->strptime("Thu Jan 8 07:01:01",'%a %b %d %T'); print $date . "\n";
use Time::Piece; my $year = localtime->year; my $date = localtime->strptime("Thu Jan 8 $year 07:01:01",'%a %b %d %Y + %T'); print $date . "\n";