- or download this
#!/usr/bin/perl -w
#find-missing-files.pl
...
my @date = Add_Delta_Days(@start,$i);
printf("%4d-%02d-%02d\n", @date);
}
- or download this
./find-missing-files.pl
- or download this
1999-05-27
1999-05-28
...
1999-05-30
1999-05-31
1999-06-01
- or download this
#@start = $from; print "@start\n";
#@stop = $to; print "@stop\n";
- or download this
@start = (1999,05,27);
@stop = (1999,06,01);
- or download this
./find-missing-files.pl 1999-05-27 1999-06-01
- or download this
1999,05,27
1999,06,01
Usage: Date::Calc::Delta_Days(year1, month1, day1, year2, month2, day2
+) at ./test.pl line 19.