(File characteristic tests): Document the
authorJim Meyering <jim@meyering.net>
Mon, 25 Mar 2002 09:52:25 +0000 (09:52 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 25 Mar 2002 09:52:25 +0000 (09:52 +0000)
behavior of test -nt and -ot when one of the files does not exist,
using the same behavior that is documented in ksh93.

doc/coreutils.texi

index bd72a4ff52a486c9de89586d6137f637c5df333b..db8ff0faa8127a242529a73f6b7eb9877722e02a 100644 (file)
@@ -8323,13 +8323,13 @@ True if @var{file} exists and has a size greater than zero.
 @opindex -nt
 @cindex newer-than file check
 True if @var{file1} is newer (according to modification date) than
-@var{file2}.
+@var{file2}, or if @var{file1} exists and @var{file2} does not.
 
 @item @var{file1} -ot @var{file2}
 @opindex -ot
 @cindex older-than file check
 True if @var{file1} is older (according to modification date) than
-@var{file2}.
+@var{file2}, or if @var{file2} exists and @var{file1} does not.
 
 @item @var{file1} -ef @var{file2}
 @opindex -ef