Help for this page

Select Code to Download


  1. or download this
    (Delta_Days($3, $months{$1}, $2, $today[2], $today[1], $today[0]) > 30
    + )? push @log_lines, $line : keep_line($line);
    
  2. or download this
    date_diff > 30  ?  move_line : keep_line
    
  3. or download this
    if(date_diff > 30) {
      move_line;
    } else {
      keep_line;
    }