[BACK]Return to wc.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / wc

Diff for /src/usr.bin/wc/wc.1 between version 1.4 and 1.5

version 1.4, 1998/11/04 22:36:41 version 1.5, 1999/02/02 03:44:07
Line 1 
Line 1 
 .\"     $OpenBSD$  .\"     $OpenBSD$
 .\" Copyright (c) 1991 Regents of the University of California.  
 .\" All rights reserved.  
 .\"  .\"
   .\" Copyright (c) 1991, 1993
   .\"     The Regents of the University of California.  All rights reserved.
   .\"
 .\" This code is derived from software contributed to Berkeley by  .\" This code is derived from software contributed to Berkeley by
 .\" the Institute of Electrical and Electronics Engineers, Inc.  .\" the Institute of Electrical and Electronics Engineers, Inc.
 .\"  .\"
Line 33 
Line 34 
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.  .\" SUCH DAMAGE.
 .\"  .\"
 .\"     from: @(#)wc.1  6.4 (Berkeley) 6/27/91  .\"     from: @(#)wc.1  8.2 (Berkeley) 4/19/94
 .\"  .\"
 .Dd June 27, 1991  .Dd April 19, 1994
 .Dt WC 1  .Dt WC 1
 .Os  .Os
 .Sh NAME  .Sh NAME
Line 54 
Line 55 
 contained in each input file to the standard output.  contained in each input file to the standard output.
 If more than one input file is specified,  If more than one input file is specified,
 a line of cumulative count(s) for all named files is output on a  a line of cumulative count(s) for all named files is output on a
 separate line  separate line following the last file count.
 following the last file count.  
 .Nm wc  .Nm wc
 considers a word to be a maximal string of  considers a word to be a maximal string of characters delimited by white
 characters delimited by white space.  space.  White space characters are the set of characters for which the
   .Xr isspace 3
   function returns true.
 .Pp  .Pp
 The following options are available:  The following options are available:
 .Bl -tag -width Ds  .Bl -tag -width Ds
Line 78 
Line 80 
 .Pp  .Pp
 When an option is specified,  When an option is specified,
 .Nm wc  .Nm wc
 only  only reports the information requested by that option.
 reports the  The default action is equivalent to the flags
 information requested by that option. The  
 default action is equivalent to all the  
 flags  
 .Fl clw  .Fl clw
 having been specified.  having been specified.  The
   .Fl c
   and
   .Fl m
   options are mutually exclusive.
 .Pp  .Pp
 The following operands are available:  The following operands are available:
 .Bl -tag -width Ds  .Bl -tag -width Ds
Line 92 
Line 95 
 A pathname of an input file.  A pathname of an input file.
 .El  .El
 .Pp  .Pp
 If no file names  If no file names are specified, the standard input is used
 are specified, the standard input is used and  and a file name is not output. The resulting output is one
 a file name is not output. The resulting output is one  
 line of the requested count(s) with the cumulative sum  line of the requested count(s) with the cumulative sum
 of all files read in via standard input.  of all files read in via standard input.
 .Pp  .Pp
Line 110 
Line 112 
 The  The
 .Nm wc  .Nm wc
 utility exits 0 on success or >0 if an error occurred.  utility exits 0 on success or >0 if an error occurred.
   .Sh SEE ALSO
   .Xr isspace 3
   .Sh COMPATIBILITY
   Historically, the
   .Nm wc
   utility was documented to define a word as a ``maximal string of
   characters delimited by <space>, <tab> or <newline> characters''.
   The implementation, however, didn't handle non-printing characters
   correctly so that ``  ^D^E  '' counted as 6 spaces, while ``foo^D^Ebar''
   counted as 8 characters.
   4BSD systems after 4.3BSD modified the implementation to be consistent
   with the documentation.
   This implementation defines a ``word'' in terms of the
   .Xr isspace 3
   function, as required by
   .St -p1003.2-92 .
 .Sh STANDARDS  .Sh STANDARDS
 The  The
 .Nm wc  .Nm wc

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5