diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-06-02 05:11:32 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-06-02 05:11:32 +0000 |
commit | e911bc54b51df9b96c41f55e0f3eac6ec2f27dc8 (patch) | |
tree | f801499b35baef300e4ba1c1493619c7fc7bacef /src | |
parent | 1745d7ec9991cc27ec21ece052f08753b7889094 (diff) | |
download | coreutils-e911bc54b51df9b96c41f55e0f3eac6ec2f27dc8.tar.xz |
(usage): Don't use "path" to describe a file name.
Diffstat (limited to 'src')
-rw-r--r-- | src/readlink.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/readlink.c b/src/readlink.c index 1548a2a7f..533b9b9e1 100644 --- a/src/readlink.c +++ b/src/readlink.c @@ -69,13 +69,13 @@ usage (int status) stdout); fputs (_("\ -f, --canonicalize canonicalize by following every symlink in\n\ - every component of the given path recursively;\n\ - all but the last path component must exist\n\ + every component of the given name recursively;\n\ + all but the last component must exist\n\ -e, --canonicalize-existing canonicalize by following every symlink in\n\ - every component of the given path recursively,\n\ - all path components must exist\n\ + every component of the given name recursively,\n\ + all components must exist\n\ -m, --canonicalize-missing canonicalize by following every symlink in\n\ - every component of the given path recursively,\n\ + every component of the given name recursively,\n\ without requirements on components existence\n\ -n, --no-newline do not output the trailing newline\n\ -q, --quiet,\n\ |