Help for this page

Select Code to Download


  1. or download this
    sub getNextDate { 
    
    ...
    
    return $nextYear . "-" . $nextMonth . "-" . $nextDay;
    }
    
  2. or download this
    startDate=2013-02-25
    perl -MUtil -e 'print Util::getNextDate("$startDate");' > $result
    echo $result
    
  3. or download this
    perl -MUtil -e 'print Util::getNextDate("2013-02-25");'