[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    wc(1) manual page Table of Contents

Name

wc - display a count of lines, words and characters in a file

Synopsis

wc [ -c | -m | -C ] [ -lw ] [ file ... ]

Availability

SUNWcsu

Description

The wc utility reads one or more input files and, by default, writes the number of newline characters, words and bytes contained in each input file to the standard output.

The utility also writes a total count for all named files, if more than one input file is specified.

wc considers a word to be a non-zero-length string of characters delimited by white space (for example, SPACE , TAB ). See iswspace(3I) or isspace(3C) .

Options

The following options are supported:
-c
Count bytes.
-m
Count characters.
-C
Same as -m.
-l
Count lines.
-w
Count words delimited by white space characters or new line characters. Delimiting characters are Extended Unix Code (EUC) characters from any code set defined by iswspace().

If no option is specified the default is -lwc (count lines, words, and bytes.)

Operands

The following operand is supported:
file
A path name of an input file. If no file operands are specified, the standard input will be used.

Environment

See environ(5) for descriptions of the following environment variables that affect the execution of wc: LC_CTYPE , LC_MESSAGES , and NLSPATH .

Exit Status

The following exit values are returned:
  1. Successful completion.
    >0
    An error occurred.

    See Also

    isspace(3C) , iswalpha(3I) , iswspace(3I) , setlocale(3C) , environ(5)


    Table of Contents