diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 23:21:20 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 23:21:20 +0000 |
commit | ffcbb9783328ef8e97fd76530ec6d8d2c9eace3d (patch) | |
tree | a24dc7af2a242436863d6b14216f28fa6f76f65b /src | |
parent | 0dd3269a47c75caf5561854df310dd62496bcfcb (diff) | |
download | coreutils-ffcbb9783328ef8e97fd76530ec6d8d2c9eace3d.tar.xz |
(usage): Document -r, -w, -x more carefully.
Diffstat (limited to 'src')
-rw-r--r-- | src/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test.c b/src/test.c index db9bb3a30..9d5563178 100644 --- a/src/test.c +++ b/src/test.c @@ -895,15 +895,15 @@ EXPRESSION is true or false and sets exit status. It is one of:\n\ -L FILE FILE exists and is a symbolic link (same as -h)\n\ -O FILE FILE exists and is owned by the effective user ID\n\ -p FILE FILE exists and is a named pipe\n\ - -r FILE FILE exists and is readable\n\ + -r FILE FILE exists and read permission is granted\n\ -s FILE FILE exists and has a size greater than zero\n\ "), stdout); fputs (_("\ -S FILE FILE exists and is a socket\n\ -t FD file descriptor FD is opened on a terminal\n\ -u FILE FILE exists and its set-user-ID bit is set\n\ - -w FILE FILE exists and is writable\n\ - -x FILE FILE exists and is executable\n\ + -w FILE FILE exists and write permission is granted\n\ + -x FILE FILE exists and execute (or search) permission is granted\n\ "), stdout); fputs (_("\ \n\ |