From: Jim Meyering Date: Tue, 27 Jun 2006 20:26:12 +0000 (+0000) Subject: * coreutils.texi (wc invocation): Remove ./ prefix from example. X-Git-Tag: v6.0~274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05d3db5c60a35fcedbbf89c8449e64ce8ac88fec;p=thirdparty%2Fcoreutils.git * coreutils.texi (wc invocation): Remove ./ prefix from example. From Padraig Brady. --- diff --git a/doc/ChangeLog b/doc/ChangeLog index 8cb05c953f..713439fd76 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2006-06-27 Jim Meyering + + * coreutils.texi (wc invocation): Remove ./ prefix from example. + From Padraig Brady. + 2006-06-26 Jim Meyering * coreutils.texi (wc invocation): Spell out `--files0-from' in diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 90136840a6..d8cc5b6a2a 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 --files0-from=- | 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.