<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">  <div>What changes need to occur to affect each time on a file or directory?<BR>So far I have:<BR><BR>Atime:<BR>read a file<BR>modify the permissions<BR>modify the ownership<BR>create new file<BR><BR>Ctime:<BR>modify the permissions<BR>modify the ownership<BR>modify the first level of contents of a directory<BR>create new file<BR><BR>Mtime:<BR>modify the contents of a file<BR>create new file<BR><BR>This is based of the googling and limited testing I have done.<BR><BR>Which begs a question, wiki, for what it's worth, states that if a<BR>permission or ownership change is made that both the atime and ctime<BR>will be modified. http://en.wikipedia.org/wiki/Stat_(Unix)<BR><BR>How can a ctime be newer than an atime?<BR><BR>Thanks,<BR>Travis<BR><BR>Interesting... I changed permissions on a file just now, that hadn;t been touched in a few days. ctime was updated but not atime or
 mtime. </div>  <div> </div>  <div>$ find . -ctime -1 -print | grep filename</div>  <div>The file was reported</div>  <div>$ find . -atime -1 -print | grep filename</div>  <div>The file was not reported</div>  <div>same as above for mtime</div>  <div><BR>_______________________________________________<BR>Redhat-install-list mailing list<BR>Redhat-install-list@redhat.com<BR>https://www.redhat.com/mailman/listinfo/redhat-install-list<BR>To Unsubscribe Go To ABOVE URL or send a message to:<BR>redhat-install-list-request@redhat.com<BR>Subject: unsubscribe<BR></div></BLOCKQUOTE><BR>