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