Help for this page

Select Code to Download


  1. or download this
    my ($file) = @ARGV;
    
    my $mtime = (stat($file))[9];  # Index 9 according to docs
    
    utime($mtime,$mtime,$file);    # See @ARGV in docs