Skip Navigation Links | |
Exit Print View | |
man pages section 1: User Commands Oracle Solaris 11.1 Information Library |
- display a count of lines, words and characters in a file
/usr/bin/wc [-c | -m | -C] [-lw] [file...]
wc reads one or more input files and, by default, for each file writes a line containing the number of NEWLINEs, words, and bytes contained in each file followed by the file name to standard output in that order. A word is defined to be a non-zero length string delimited by isspace(3C) characters.
If more than one file is specified, wc writes a total count for all of the named files with total written instead of the file name.
By default, wc writes all three counts. Options can specified so that only certain counts are written. The -c and -m options are mutually exclusive.
If no file is specified, or if the file is -, wc reads from standard input and no filename is written to standard output. The start of the file is defined as the current offset.
The following options are supported for both usr/bin/wc and ksh. The long form of the options are only available with ksh:
Counts bytes.
Counts characters. Same as -m.
Counts lines.
Counts characters. Same as -C.
Counts words delimited by white space characters or new line characters. Delimiting characters are Extended Unix Code (EUC) characters from any code set defined by isspace(3C).
If no option is specified, the default is -lwc (counts lines, words, and bytes.)
The following operand is supported:
A path name of an input file. If no file operands are specified, the standard input is used.
See largefile(5) for the description of the behavior of wc when encountering files greater than or equal to 2 Gbyte (231 bytes).
See environ(5) for descriptions of the following environment variables that affect the execution of wc: LANG, LC_ALL, LC_CTYPE, LC_MESSAGES, and NLSPATH.
Successful completion.
An error occurred.
See attributes(5) for descriptions of the following attributes:
|
cksum(1), isspace(3C), iswalpha(3C), iswspace(3C), setlocale(3C), attributes(5), environ(5), largefile(5), standards(5)