| Developer's Daily | Unix by Example |
| main | java | perl | unix | DevDirectory |
| Command | wc |
| Description | The
"wc" command stands for "word count". It counts the number of
characters, words, and lines that are contained in a text
stream. |
| Examples | wc
/etc/passwd
wc -l /etc/passwd
wc -w MyStory
who | wc -l
ps -e | wc -l
|