Help for this page

Select Code to Download


  1. or download this
    if (-M $outputfile < $timeforfiletoupdate_beforeerror) {
       # etc
    }
    
  2. or download this
    if (-M($outputfile) < $timeforfiletoupdate_beforeerror) {
       # etc
    }
    
  3. or download this
    $days_since = -M $outputfile;