Help for this page

Select Code to Download


  1. or download this
        my $date = q{Sat Jun  4 22:47:31 2022};
        my $fmt_t = q{%a %b %d %T %Y};
    ...
        say sprintf $fmt_s, split q{ }, $tp->strftime($fmt_t);
        $tp += 6 * ONE_DAY;
        say sprintf $fmt_s, split q{ }, $tp->strftime($fmt_t);
    
  2. or download this
    Sat Jun  4 20:47:31 2022
    Fri Jun 10 20:47:31 2022