wc.1 (472B)
1 .TH WC 1 sbase\-VERSION 2 .SH NAME 3 wc \- word count 4 .SH SYNOPSIS 5 .B wc 6 .RB [ \-clmw ] 7 .RI [ file ...] 8 .SH DESCRIPTION 9 .B wc 10 prints the number of lines, words, and bytes in each file. If any flags are 11 given, wc will print only the requested information. If no files are given, wc 12 reads stdin. 13 .SH OPTIONS 14 .TP 15 .B \-c 16 print the number of bytes. 17 .TP 18 .B \-l 19 print the number of lines. 20 .TP 21 .B \-m 22 print the number of characters, not bytes. 23 .TP 24 .B \-w 25 print the number of words.