kernel: restore setting KTS_NONE
[minix.git] / man / man1 / wc.1
blob65184fed3685751d80a1410d1da1096ac94a6aff
1 .TH WC 1
2 .SH NAME
3 wc \- count characters, words, and lines in a file
4 .SH SYNOPSIS
5 \fBwc\fR [\fB\-clw\fR] \fIfile\fR ...\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-c
20 # Print character count
21 .TP 5
22 .B \-l
23 # Print line count
24 .TP 5
25 .B \-w
26 # Print word count
27 .SH EXAMPLES
28 .TP 20
29 .B wc file1 file2
30 # Print all three counts for both files
31 .TP 20
32 .B wc \-l file
33 # Print line count only
34 .SH DESCRIPTION
35 .PP
36 .I Wc
37 reads each argument and computes the number of characters, words and lines
38 it contains.
39 A word is delimited by white space (space, tab, or line feed).
40 If no flags are present, all three counts are printed.