Sample execution of
wc: $ wc foo bar 40 149 947 foo 2294 16638 97724 bar 2334 16787 98671 total The first column is the count of newlines, meaning that the text file foo has 40 newlines while bar has 2294 newlines- resulting in a total of 2334 newlines. The second column indicates the number of words in each text file showing that there are 149 words in foo and 16638 words in bar giving a total of 16787 words. The last column indicates the number of characters in each text file, meaning that the file foo has 947 characters while bar has 97724 characters 98671 characters all in all. Newer versions of wc can differentiate between
byte and
character count. This difference arises with
Unicode which includes multi-byte characters. The desired behaviour is selected with the -c or -m options. Through a
pipeline, it can also be used to preview the output size of a command with a potentially large output, without it printing the text into the console: $ grep -r "example" | wc 1071 23337 101349 ==History==