UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: Reference: wallChapter 2
UNIX Commands
Next: Reference: what
 

wc

wc [options] [files]

Print a character, word, and line count for files. If no files are given, read standard input. See other examples under ls and sort.

Options

-c

Print character count only.

-l

Print line count only.

-w

Print word count only.

Examples

Count the number of users logged in:

who | wc -l

Count the words in three essay files:

wc -w essay.[123]

Count lines in variable $file (don't display filename):

wc -l <$file


Previous: Reference: wallUNIX in a Nutshell: System V EditionNext: Reference: what
Reference: wallBook IndexReference: what

The UNIX CD Bookshelf NavigationThe UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System