40 lines
665 B
Groff
40 lines
665 B
Groff
.TH WC 1
|
|
.SH NAME
|
|
wc \- count characters, words, and lines in a file
|
|
.SH SYNOPSIS
|
|
\fBwc\fR [\fB\-clw\fR] \fIfile\fR ...\fR
|
|
.br
|
|
.de FL
|
|
.TP
|
|
\\fB\\$1\\fR
|
|
\\$2
|
|
..
|
|
.de EX
|
|
.TP 20
|
|
\\fB\\$1\\fR
|
|
# \\$2
|
|
..
|
|
.SH OPTIONS
|
|
.TP 5
|
|
.B \-c
|
|
# Print character count
|
|
.TP 5
|
|
.B \-l
|
|
# Print line count
|
|
.TP 5
|
|
.B \-w
|
|
# Print word count
|
|
.SH EXAMPLES
|
|
.TP 20
|
|
.B wc file1 file2
|
|
# Print all three counts for both files
|
|
.TP 20
|
|
.B wc \-l file
|
|
# Print line count only
|
|
.SH DESCRIPTION
|
|
.PP
|
|
.I Wc
|
|
reads each argument and computes the number of characters, words and lines
|
|
it contains.
|
|
A word is delimited by white space (space, tab, or line feed).
|
|
If no flags are present, all three counts are printed.
|