#!/usr/bin/perl use strict; use DateTime; use DateTime::Format::Strptime; my $strp = DateTime::Format::Strptime->new( pattern => '%Y-%m-%d' ); # convert date to my $date = '2014-01-26'; my $dt = $strp->parse_datetime($date); my $dat = $dt->add(days => 0)->strftime("%Y-%m-%d"); my $rem1 = $dt->add(days => 7)->strftime("%Y-%m-%d"); my $rem2 = $dt->add(days => 14)->strftime("%Y-%m-%d"); print "$date\n$rem1\n$rem2\n$dat\n"; #### The am_pms method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 610. The default_date_format method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 613. The default_time_format method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 617. The default_datetime_format method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 621. The day_names method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 671. The day_abbreviations method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 671. The month_names method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 682. The month_abbreviations method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 682. The am_pms method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details at /usr/share/perl5/DateTime/Format/Strptime.pm line 469. 2014-01-26 2014-02-02 2014-02-16 2014-01-26