Help for this page

Select Code to Download


  1. or download this
        if ((stat($target))[9] < (stat($source))[9]) {
            ... do work ...
        }
    
  2. or download this
        if ($force or (stat($target))[9] < (stat($source))[9]) {
            ... do work ...
        }
    
  3. or download this
    GetOptions(
        'f' => \my $force,
    ...
            ... do work here
        };
    };
    
  4. or download this
      if (test_dep( -target => $thumbname, -depend => $info->{file} )) {
          ...
      }