diff options
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 90f90286..3229f0dd 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -25072,7 +25072,7 @@ supplied: function usage() @{ print("usage: cut [-f list] [-d c] [-s] [files...]") > "/dev/stderr" - print("usage: cut [-c list] [files...]") > "/dev/stderr" + print(" cut [-c list] [files...]") > "/dev/stderr" exit 1 @} @end group @@ -26041,7 +26041,7 @@ is four, the output files would range from @file{xaaaa} to @file{xzzzz}. Instead of each file containing a specified number of lines, each file should have (at most) @var{N} bytes. Supplying a trailing @samp{k} multiplies @var{N} by 1,024, yielding kilobytes. Supplying a trailing -@samp{m} mutiplies @var{N} by 1,048,576 (@math{1,024 @value{TIMES} 1,024}) +@samp{m} multiplies @var{N} by 1,048,576 (@math{1,024 @value{TIMES} 1,024}) yielding megabytes. (This option is mutually exclusive with @option{-l}). @item @option{-l} @var{count} @@ -26762,7 +26762,7 @@ as fast.'' Consider how to rewrite the logic to follow this suggestion. @node Wc Program @subsection Counting Things -@cindex counting words, lines, characters, and bytese +@cindex counting words, lines, characters, and bytes @cindex input files @subentry counting elements in @cindex words @subentry counting @cindex characters @subentry counting @@ -26881,7 +26881,7 @@ command line: @cindex @code{wc.awk} program @example @c file eg/prog/wc.awk -# wc.awk --- count lines, words, characters +# wc.awk --- count lines, words, characters, bytes @c endfile @ignore @c file eg/prog/wc.awk |