linux wc code example

Example 1: wc bash

wc(1) - print newline, word, and byte counts for each file

Print  newline, word, and byte counts for each FILE, 
and a total line if more than one FILE is specified.
With no FILE, or when FILE is -, read standard input.  
A word is a non-zero-length sequence of characters
delimited  by  white  space.  The options below may be 
used to select which counts are printed, always in the 
following order: newline, word, character, byte, maximum 
line length.

-l, --lines
       print the newline counts

Example 2: wc linux command

# Example of wc use 

wc /proc/cpuinfo 

448 3632 22226 /proc/cpuinfo

# 448: Number of lines
# 3632: Number of words
# 22226: Number of characters