Ok , I think you meant to write
$mtime=(stat ( $ARGV[0] ))[9]; # mtime is 9 , atime is 8!!

That is to say , stat the file given as the first (index 0) argument to your script, assigning the eighth element in the stat list to the variable $mtime.

have a go with this....
#!/usr/bin/perl -w use strict; my $mtime = (stat ( $ARGV[0] ))[9]; print "$mtime\n"; open ( F , '>>' ,$ARGV[0] ); print F 'japh'; close F; utime $mtime, $mtime, $ARGV[0]; $mtime = (stat($ARGV[0]))[9]; ## Update, this is supposed to be a 9 RE +ALLY print "$mtime\n";
Of course , anything else modifying this file that DOESN'T reset the timestamp is going to throw an irish-screwdriver in the works.
that snippet seems to work w/ perl5.6.1 on rh7.3

In reply to Re: retaining TIMESTAMPS by submersible_toaster
in thread retaining TIMESTAMPS by xlim

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.