From: Jim Meyering Date: Mon, 26 Jun 2006 15:34:19 +0000 (+0000) Subject: * coreutils.texi (wc invocation): Spell out `--files0-from' in X-Git-Tag: v6.0~276 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80059da4ca0feb6fd9f94e424454fa20f66e9e84;p=thirdparty%2Fcoreutils.git * coreutils.texi (wc invocation): Spell out `--files0-from' in the example. Suggestion from Bob Proulx. --- diff --git a/doc/ChangeLog b/doc/ChangeLog index 01cc164b74..8cb05c953f 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,8 @@ 2006-06-26 Jim Meyering + * 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 diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 67639cea3e..90136840a6 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.