diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 23:21:38 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 23:21:38 +0000 |
commit | 978abbd27947483b0b1c61db701175e56a5fcefb (patch) | |
tree | fb5b4bd3d4ebb708a57daf7cd0446d8a7b10cffd /doc | |
parent | ffcbb9783328ef8e97fd76530ec6d8d2c9eace3d (diff) | |
download | coreutils-978abbd27947483b0b1c61db701175e56a5fcefb.tar.xz |
(test invocation): Document -r, -w, -x more carefully.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index ec995bb7f..b213d92e0 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -9512,12 +9512,12 @@ True if @var{file} exists and has its set-group-id bit set. @item -k @var{file} @opindex -k @cindex sticky bit check -True if @var{file} has its @dfn{sticky} bit set. +True if @var{file} exists and has its @dfn{sticky} bit set. @item -r @var{file} @opindex -r @cindex readable file check -True if @var{file} exists and is readable. +True if @var{file} exists and read permission is granted. @item -u @var{file} @opindex -u @@ -9527,12 +9527,13 @@ True if @var{file} exists and has its set-user-id bit set. @item -w @var{file} @opindex -w @cindex writable file check -True if @var{file} exists and is writable. +True if @var{file} exists and write permission is granted. @item -x @var{file} @opindex -x @cindex executable file check -True if @var{file} exists and is executable. +True if @var{file} exists and execute permission is granted +(or search permission, if it is a directory). @item -O @var{file} @opindex -O |