5 # removes all iotw images >= a certain age
7 # set how long to keep old images
9 my $limit = $days * 24 * 60 * 60;
12 my $dir = "/soldb/website/sgn/html/img/feature/iotw";
14 # get list of all iotw images
16 my @files = grep(/\.jpg$/, readdir(DIR
));
19 foreach my $file (@files) {
20 my $filetime = (stat($dir."/".$file))[9];
21 my $expiry = $filetime+$limit;
23 print "$file is old, and will be deleted.\n";