xref: /freebsd/usr.bin/wc/wc.1 (revision e785a241f2a841ff2345d1a61514f889cc1526b6)
19b50d902SRodney W. Grimes.\" Copyright (c) 1991, 1993
29b50d902SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
39b50d902SRodney W. Grimes.\"
49b50d902SRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
59b50d902SRodney W. Grimes.\" the Institute of Electrical and Electronics Engineers, Inc.
69b50d902SRodney W. Grimes.\"
79b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes.\" are met:
109b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
159b50d902SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software
169b50d902SRodney W. Grimes.\"    must display the following acknowledgement:
179b50d902SRodney W. Grimes.\"	This product includes software developed by the University of
189b50d902SRodney W. Grimes.\"	California, Berkeley and its contributors.
199b50d902SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
209b50d902SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
219b50d902SRodney W. Grimes.\"    without specific prior written permission.
229b50d902SRodney W. Grimes.\"
239b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
249b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
259b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
269b50d902SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
279b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
289b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
299b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
309b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
319b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
329b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
339b50d902SRodney W. Grimes.\" SUCH DAMAGE.
349b50d902SRodney W. Grimes.\"
359b50d902SRodney W. Grimes.\"     @(#)wc.1	8.2 (Berkeley) 4/19/94
36c3aac50fSPeter Wemm.\" $FreeBSD$
379b50d902SRodney W. Grimes.\"
38561a45caSTim J. Robbins.Dd June 13, 2002
399b50d902SRodney W. Grimes.Dt WC 1
409b50d902SRodney W. Grimes.Os
419b50d902SRodney W. Grimes.Sh NAME
429b50d902SRodney W. Grimes.Nm wc
43ebb42aeeSTim J. Robbins.Nd word, line, character, and byte count
449b50d902SRodney W. Grimes.Sh SYNOPSIS
458fe908efSRuslan Ermilov.Nm
46ebb42aeeSTim J. Robbins.Op Fl clmw
478c85cce7SPhilippe Charnier.Op Ar
489b50d902SRodney W. Grimes.Sh DESCRIPTION
499b50d902SRodney W. GrimesThe
508c85cce7SPhilippe Charnier.Nm
519b50d902SRodney W. Grimesutility displays the number of lines, words, and bytes contained in each
529b50d902SRodney W. Grimesinput
539b50d902SRodney W. Grimes.Ar file
549b50d902SRodney W. Grimes(or standard input, by default) to the standard output.
559b50d902SRodney W. GrimesA line is defined as a string of characters delimited by a <newline>
569b50d902SRodney W. Grimescharacter,
579b50d902SRodney W. Grimesand a word is defined as a string of characters delimited by white space
589b50d902SRodney W. Grimescharacters.
599b50d902SRodney W. GrimesWhite space characters are the set of characters for which the
609b50d902SRodney W. Grimes.Xr isspace 3
619b50d902SRodney W. Grimesfunction returns true.
629b50d902SRodney W. GrimesIf more than one input file is specified, a line of cumulative counts
639b50d902SRodney W. Grimesfor all the files is displayed on a separate line after the output for
649b50d902SRodney W. Grimesthe last file.
659b50d902SRodney W. Grimes.Pp
669b50d902SRodney W. GrimesThe following options are available:
679b50d902SRodney W. Grimes.Bl -tag -width Ds
689b50d902SRodney W. Grimes.It Fl c
699b50d902SRodney W. GrimesThe number of bytes in each input file
709b50d902SRodney W. Grimesis written to the standard output.
719b50d902SRodney W. Grimes.It Fl l
729b50d902SRodney W. GrimesThe number of lines in each input file
739b50d902SRodney W. Grimesis written to the standard output.
74ebb42aeeSTim J. Robbins.It Fl m
75ebb42aeeSTim J. RobbinsThe number of characters in each input file is written to the standard output.
76ebb42aeeSTim J. RobbinsIf the current locale does not support multibyte characters, this
77ebb42aeeSTim J. Robbinsis equivalent to the
78ebb42aeeSTim J. Robbins.Fl c
79ebb42aeeSTim J. Robbinsoption.
809b50d902SRodney W. Grimes.It Fl w
819b50d902SRodney W. GrimesThe number of words in each input file
829b50d902SRodney W. Grimesis written to the standard output.
839b50d902SRodney W. Grimes.El
849b50d902SRodney W. Grimes.Pp
859b50d902SRodney W. GrimesWhen an option is specified,
868c85cce7SPhilippe Charnier.Nm
879b50d902SRodney W. Grimesonly reports the information requested by that option.
88ebb42aeeSTim J. RobbinsThe default action is equivalent to specifying the
89ebb42aeeSTim J. Robbins.Fl c ,
90ebb42aeeSTim J. Robbins.Fl l
91ebb42aeeSTim J. Robbinsand
92ebb42aeeSTim J. Robbins.Fl w
93ebb42aeeSTim J. Robbinsoptions.
949b50d902SRodney W. Grimes.Pp
959b50d902SRodney W. GrimesIf no files are specified, the standard input is used and no
969b50d902SRodney W. Grimesfile name is displayed.
97ebb42aeeSTim J. Robbins.Sh ENVIRONMENT
98ebb42aeeSTim J. RobbinsThe
99ebb42aeeSTim J. Robbins.Ev LANG ,
100ebb42aeeSTim J. Robbins.Ev LC_ALL
101ebb42aeeSTim J. Robbinsand
102ebb42aeeSTim J. Robbins.Ev LC_CTYPE
103ebb42aeeSTim J. Robbinsenvironment variables affect the execution of
104ebb42aeeSTim J. Robbins.Nm
105ebb42aeeSTim J. Robbinsas described in
106ebb42aeeSTim J. Robbins.Xr environ 7
107ebb42aeeSTim J. Robbinswhen the
108ebb42aeeSTim J. Robbins.Fl m
109ebb42aeeSTim J. Robbinsoption is specified.
110ebb42aeeSTim J. Robbins.Sh EXAMPLES
111ebb42aeeSTim J. RobbinsCount the number of characters, words and lines in each of the files
112ebb42aeeSTim J. Robbins.Pa report1
113ebb42aeeSTim J. Robbinsand
114ebb42aeeSTim J. Robbins.Pa report2
115ebb42aeeSTim J. Robbinsas well as the totals for both:
116ebb42aeeSTim J. Robbins.Pp
117ebb42aeeSTim J. Robbins.Dl "wc -mlw report1 report2"
118dbb9d8f8SPhilippe Charnier.Sh DIAGNOSTICS
119d628d776SRuslan Ermilov.Ex -std
1209b50d902SRodney W. Grimes.Sh SEE ALSO
1219b50d902SRodney W. Grimes.Xr isspace 3
1229b50d902SRodney W. Grimes.Sh COMPATIBILITY
1239b50d902SRodney W. GrimesHistorically, the
1248c85cce7SPhilippe Charnier.Nm
1259b50d902SRodney W. Grimesutility was documented to define a word as a ``maximal string of
1269b50d902SRodney W. Grimescharacters delimited by <space>, <tab> or <newline> characters''.
1279b50d902SRodney W. GrimesThe implementation, however, didn't handle non-printing characters
1289b50d902SRodney W. Grimescorrectly so that ``  ^D^E  '' counted as 6 spaces, while ``foo^D^Ebar''
1299b50d902SRodney W. Grimescounted as 8 characters.
130753d686dSRuslan Ermilov.Bx 4
131753d686dSRuslan Ermilovsystems after
132753d686dSRuslan Ermilov.Bx 4.3
133753d686dSRuslan Ermilovmodified the implementation to be consistent
1349b50d902SRodney W. Grimeswith the documentation.
1359b50d902SRodney W. GrimesThis implementation defines a ``word'' in terms of the
1369b50d902SRodney W. Grimes.Xr isspace 3
1379b50d902SRodney W. Grimesfunction, as required by
1389b50d902SRodney W. Grimes.St -p1003.2 .
1399b50d902SRodney W. Grimes.Sh STANDARDS
1409b50d902SRodney W. GrimesThe
1418c85cce7SPhilippe Charnier.Nm
142e785a241STim J. Robbinsutility conforms to
143ebb42aeeSTim J. Robbins.St -p1003.1-2001 .
144b8923d4cSWolfram Schneider.Sh HISTORY
145b8923d4cSWolfram SchneiderA
146b8923d4cSWolfram Schneider.Nm
147b8923d4cSWolfram Schneidercommand appeared in
148b8923d4cSWolfram Schneider.At v1 .
149