diff options
author | Jim Meyering <jim@meyering.net> | 2006-06-26 15:34:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-06-26 15:34:19 +0000 |
commit | 80059da4ca0feb6fd9f94e424454fa20f66e9e84 (patch) | |
tree | 402680b2966e62deb4d448553154529c07cc14bb /doc | |
parent | 7590adf9b94f168f0dd7259d1b1c32e88f58114f (diff) | |
download | coreutils-80059da4ca0feb6fd9f94e424454fa20f66e9e84.tar.xz |
* coreutils.texi (wc invocation): Spell out `--files0-from' in
the example. Suggestion from Bob Proulx.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 3 | ||||
-rw-r--r-- | doc/coreutils.texi | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 01cc164b7..8cb05c953 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,8 @@ 2006-06-26 Jim Meyering <jim@meyering.net> + * coreutils.texi (wc invocation): Spell out `--files0-from' in + the example. Suggestion from Bob Proulx. + * coreutils.texi (wc invocation): Document new --files0-from option. 2006-06-20 Eric Blake <ebb9@byu.net> diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 67639cea3..90136840a 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -2978,7 +2978,7 @@ the length of the longest line in any @file{.c} or @file{.h} file in the current hierarchy, do this: @example -find . -name '*.[ch]' -print0 | ./wc -L --files=- | tail -n1 +find . -name '*.[ch]' -print0 | ./wc -L --files0-from=- | tail -n1 @end example Do not specify any @var{FILE} on the command line when using this option. |