in reply to Mysql backup using DateTime

<< have this perl script implement DateTime(or any favorable Module) to auto increment the date >>

#!/usr/bin/perl -w use strict; use DateTime; DateTime->DefaultLocale( 'fr_FR' ); my $dt = DateTime->now; $dt->set_time_zone( 'Europe/Paris' ); $dt->add( days => 1 ); # $dt->subtract( days => 1 ); print $dt->ymd('-');

hth,
PooLpi

'Ebry haffa hoe hab im tik a bush'. Jamaican proverb