The stat
command's manual page says:
%x Time of last access %y Time of last modification %z Time of last change
I cannot understand the difference between modify and change. I understand the words are synonyms (English is not my native language), but their output is different.
I tried the following command
stat --printf="Change %z\nAccess %x\nModify %y\n" p.txt
Now when I open p.txt, access time is changed, I go into insert mode, edit the file, modify and change time remains same.
Change 2010-10-06 12:48:39.286252389 +0500 Access 2010-10-06 12:49:14.962243456 +0500 Modify 2010-10-06 12:48:39.234498878 +0500
When I write the changes to file :w
, modify and change, both change but give different values.
Change 2010-10-06 12:51:21.949082169 +0500 Access 2010-10-06 12:51:21.908246082 +0500 Modify 2010-10-06 12:51:21.908246082 +0500
So what are the meanings of "modify" and "change" in this context? That is, time of modification and change give time of which events?
Thanks
--help
it reads something like "last modify" and "last modified" since we don't have two words for modify/change. – Camilo Martin Jul 27 '12 at 15:21