- or download this
my (@file_change,@backup);
my ($time2,$change,$file,$files);
- or download this
open my $report, ">", "report.txt";
- or download this
for $file (</tmp/*>) {
- or download this
@file_change = stat($file);
$time2 = $file_change[9];
# (day = 86400, week = 604800)
$change = (time - $time2);
push @backup, $file if ($change < 604800) ;
- or download this
# function to create tarball and backup changed files;
sub backup {
...
# run backup function
backup();