From: Jim Meyering Date: Sat, 11 Feb 1995 13:21:46 +0000 (+0000) Subject: Fix example in comment. X-Git-Tag: textutils-1_12_1~299 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79c16924de3eb2ec2a7a66c506fc3fd8a330b4c4;p=thirdparty%2Fcoreutils.git Fix example in comment. --- diff --git a/src/wc.c b/src/wc.c index 4d307cd18e..1f362fd095 100644 --- a/src/wc.c +++ b/src/wc.c @@ -211,7 +211,8 @@ wc (fd, file) NOTE: using fstat and stats.st_size (and omitting the lseek calls) overcounts when the file is not positioned at the beginning. - For example the command `(dd skip=9999; wc -c) < /etc/group' + For example the command + `(dd ibs=99k skip=1 count=0; ./wc -c) < /etc/group' should make wc report `0' bytes. */ if (print_chars && !print_words && !print_lines)