Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    printf "%d%.2d%.2d\n", Add_Delta_Days( Today(), -1 );
    
    __END__
    
  2. or download this
    use strict;
    use Date::Calc qw(:all);
    ...
    print join '', $year, $month, $day, "\n";
    
    __END__