This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Script to calculate recurrence dates based on given criteria using Perl Date::Manip module. | |
# All the input dates in this are given hard coded. These shall be passed through external program etc. | |
#!/usr/local/bin/perl -w | |
use strict; | |
use Date::Manip; | |
use Data::Dumper; | |
# calculate the dates for yearly patterns. | |
&yearly(); | |
&monthly(); | |
&weekly(); |