Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
use strict;
use File::Find;
if ($ARGV[0] eq "") { $ARGV[0]="."; }
my @file_list;
find ( sub {
my $file = $File::Find::name;
if ( -f $file ) {
push (@file_list, $file)
}
}, @ARGV);
my $now = time();
my $AGE = 60*60*24*7;
for my $file (@file_list) {
my @stats = stat($file);
if ($now-$stats[9] < $AGE) {
print "$file\n";
}
}