Tag Archives: timestamp

File modified timestamp with Perl

This is how to quickly get the timestamp of when the file was last modified in Perl: $lastmod = (stat($filename))[9];
Posted in Programming, Tips & Tricks | Also tagged | Leave a comment