BSD 4_4_Lite2 development
[unix-history] / usr / share / man / cat1 / wc.0
WC(1) BSD Reference Manual WC(1)
N\bNA\bAM\bME\bE
w\bwc\bc - word, line, and byte count
S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS
w\bwc\bc [-\b-c\bcl\blw\bw] [_\bf_\bi_\bl_\be _\b._\b._\b.]
D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN
The w\bwc\bc utility displays the number of lines, words, and bytes contained
in each input _\bf_\bi_\bl_\be (or standard input, by default) to the standard out-
put. A line is defined as a string of characters delimited by a <new-
line> character, and a word is defined as a string of characters delimit-
ed by white space characters. White space characters are the set of
characters for which the isspace(3) function returns true. If more than
one input file is specified, a line of cumulative counts for all the
files is displayed on a separate line after the output for the last file.
The following options are available:
-\b-c\bc The number of bytes in each input file is written to the standard
output.
-\b-l\bl The number of lines in each input file is written to the standard
output.
-\b-w\bw The number of words in each input file is written to the standard
output.
When an option is specified, w\bwc\bc only reports the information requested by
that option. The default action is equivalent to specifying all of the
flags.
If no files are specified, the standard input is used and no file name is
displayed.
The w\bwc\bc utility exits 0 on success, and >0 if an error occurs.
S\bSE\bEE\bE A\bAL\bLS\bSO\bO
isspace(3)
C\bCO\bOM\bMP\bPA\bAT\bTI\bIB\bBI\bIL\bLI\bIT\bTY\bY
Historically, the w\bwc\bc utility was documented to define a word as a ``maxi-
mal string of characters delimited by <space>, <tab> or <newline> charac-
ters''. The implementation, however, didn't handle non-printing charac-
ters correctly so that `` ^D^E '' counted as 6 spaces, while
``foo^D^Ebar'' counted as 8 characters. 4BSD systems after 4.3BSD modi-
fied the implementation to be consistent with the documentation. This
implementation defines a ``word'' in terms of the isspace(3) function, as
required by IEEE Std1003.2 (``POSIX'').
S\bST\bTA\bAN\bND\bDA\bAR\bRD\bDS\bS
The w\bwc\bc function conforms to IEEE Std1003.2 (``POSIX'').
4.4BSD April 19, 1994 1