how do I get the line, word, or character count of a fine in UNIX?wc Replace with the file or files for which you want information. For each file, wc will output three numbers. The first is the line count, the second is the word count, and the third is the character count. For example, if you entered wc .bashrc, the output would be something similar to the following: 13 23 709 .bashrcThe options are:wc -l - by lines
wc -w - by words
wc -c - by bytes