]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
doc: clarify meaning of stat's mtime and ctime formats
authorAssaf Gordon <assafgordon@gmail.com>
Mon, 21 Apr 2014 18:31:23 +0000 (14:31 -0400)
committerPádraig Brady <P@draigBrady.com>
Tue, 22 Apr 2014 15:53:47 +0000 (16:53 +0100)
* src/stat.c (usage): s/modification time/data modification time/;
s/change time/status change time/
* doc/coreutils.texi: Ditto.

doc/coreutils.texi
src/stat.c

index 6c49385e13c542ea3dc19cc59e078aefe9d9407e..b21a4fd83b5fd5cf616af1c2a2580e33b9a1186e 100644 (file)
@@ -11829,10 +11829,10 @@ The valid @var{format} directives for files with @option{--format} and
 @item %W - Time of file birth as seconds since Epoch, or @samp{0}
 @item %x - Time of last access
 @item %X - Time of last access as seconds since Epoch
-@item %y - Time of last modification
-@item %Y - Time of last modification as seconds since Epoch
-@item %z - Time of last change
-@item %Z - Time of last change as seconds since Epoch
+@item %y - Time of last data modification
+@item %Y - Time of last data modification as seconds since Epoch
+@item %z - Time of last status change
+@item %Z - Time of last status change as seconds since Epoch
 @end itemize
 
 The @samp{%t} and @samp{%T} formats operate on the st_rdev member of
index fffebe3b63bf59d934672b4cd2beee11b1908a2a..7d43eb55510372e18cc1129db269586710d28229 100644 (file)
@@ -1457,10 +1457,10 @@ The valid format sequences for files (without --file-system):\n\
   %W   time of file birth, seconds since Epoch; 0 if unknown\n\
   %x   time of last access, human-readable\n\
   %X   time of last access, seconds since Epoch\n\
-  %y   time of last modification, human-readable\n\
-  %Y   time of last modification, seconds since Epoch\n\
-  %z   time of last change, human-readable\n\
-  %Z   time of last change, seconds since Epoch\n\
+  %y   time of last data modification, human-readable\n\
+  %Y   time of last data modification, seconds since Epoch\n\
+  %z   time of last status change, human-readable\n\
+  %Z   time of last status change, seconds since Epoch\n\
 \n\
 "), stdout);