initial commit

This commit is contained in:
Connor Lane Smith
2011-05-23 02:36:34 +01:00
commit 8e26716a5a
23 changed files with 632 additions and 0 deletions

28
wc.1 Normal file
View File

@@ -0,0 +1,28 @@
.TH WC 1 sbase\-VERSION
.SH NAME
wc \- word count
.SH SYNOPSIS
.B wc
.RB [ \-c ]
.RB [ \-l ]
.RB [ \-m ]
.RB [ \-w ]
.RI [ file ...]
.SH DESCRIPTION
.B wc
prints the number of lines, words, and bytes in each file. If any flags are
given, wc will print only the requested information. If no files are given, wc
reads stdin.
.SH OPTIONS
.TP
.B \-c
print the number of bytes.
.TP
.B \-l
print the number of lines.
.TP
.B \-m
print the number of characters, not bytes.
.TP
.B \-w
print the number of words.