Help for this page

Select Code to Download


  1. or download this
    $mtime=(stat ( $ARGV[0] ))[9]; # mtime is 9 , atime is 8!!
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $mtime = (stat($ARGV[0]))[9]; ## Update, this is supposed to be a 9 RE
    +ALLY
    print "$mtime\n";