Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    #find-missing-files.pl
    ...
        my @date = Add_Delta_Days(@start,$i);
        printf("%4d-%02d-%02d\n", @date);
    }
    
  2. or download this
    ./find-missing-files.pl
    
  3. or download this
    1999-05-27
    1999-05-28
    ...
    1999-05-30
    1999-05-31
    1999-06-01
    
  4. or download this
    #@start = $from; print "@start\n";
    #@stop = $to;  print "@stop\n";
    
  5. or download this
    @start = (1999,05,27);
    @stop  = (1999,06,01);
    
  6. or download this
    ./find-missing-files.pl 1999-05-27 1999-06-01
    
  7. 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.