diff options
author | Eric Blake <eblake@redhat.com> | 2010-06-07 09:42:09 -0600 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2010-06-08 04:28:19 -0600 |
commit | 04bed02096fc574476886d6494a6a147b5208f6b (patch) | |
tree | 0117a78b4afdee1918f660517d541411069d763f /doc | |
parent | dfad4755caaefc56b5784fe59c18aa028543cae6 (diff) | |
download | coreutils-04bed02096fc574476886d6494a6a147b5208f6b.tar.xz |
dirname: tweak summary wording
* doc/coreutils.texi (dirname invocation): Reword to be more
precise.
* src/dirname.c (usage): Likewise.
* THANKS: Update.
Reported by Filipus Klutiero, bug 6175.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index d1c308524..26b4eba64 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -11991,14 +11991,17 @@ basename include/stdio.h .h @cindex non-directory suffix, stripping @command{dirname} prints all but the final slash-delimited component of -a string (presumably a file name, but also works on directories). Synopsis: +@var{name}. Slashes on either side of the final component are also +removed. If the string contains no slash, @command{dirname} prints +@samp{.} (meaning the current directory). Synopsis: @example dirname @var{name} @end example -If @var{name} is a single component, @command{dirname} prints @samp{.} -(meaning the current directory). +@var{name} need not be a file name, but if it is, this operation +effectively lists the directory that contains the final component, +including the case when the final component is itself a directory. @basenameAndDirname @@ -12017,6 +12020,7 @@ Examples: @smallexample # Output "/usr/bin". dirname /usr/bin/sort +dirname /usr/bin//.// # Output ".". dirname stdio.h |