39 lines
909 B
Groff
39 lines
909 B
Groff
|
.TH WC 1
|
||
|
.SH NAME
|
||
|
wc \- word, line, and byte/character count
|
||
|
.SH SYNOPSIS
|
||
|
.B wc
|
||
|
[\fB\-m\fR|\fB\-c\fR]
|
||
|
[\fB\-lw\fR]
|
||
|
.IR file ...
|
||
|
.SH DESCRIPTION
|
||
|
.B wc
|
||
|
writes the number of bytes in each input file to standard output.
|
||
|
Optionally, \fBwc\fR can also write the number of <newline>
|
||
|
characters and/or words to standard output as well. If more than one
|
||
|
file is specified, it will also write the total across all files
|
||
|
given as input.
|
||
|
.SH OPTIONS
|
||
|
A listing of options
|
||
|
.TP
|
||
|
.BR \-c
|
||
|
Write the number of bytes in each file
|
||
|
.TP
|
||
|
.BR \-l
|
||
|
Write the number of <newline> characters in each file
|
||
|
.TP
|
||
|
.BR \-m
|
||
|
Write the number of characters in each file
|
||
|
.TP
|
||
|
.BR \-w
|
||
|
Write the number of words in each file
|
||
|
.SH AUTHOR
|
||
|
Written by Kat.
|
||
|
.SH COPYRIGHT
|
||
|
Copyright (C) 2019 Katlynn Richey
|
||
|
.PP
|
||
|
This software is free software. Feel free to modify it and/or pass
|
||
|
it around.
|
||
|
.PP
|
||
|
This \fBwc\fR implementation is a part of the fenutils package.
|