How does one count the amount of words in a .txt file using bash?

One word would typically contain A-z and 0-9.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The wc -w command can do this.

link|improve this answer
Thanks! This was exactly what I was looking for. – whirlwin Mar 30 '11 at 20:37
Note that wc is not in bash - it is a separate executable that can be called by any shell. – Mark Mar 30 '11 at 22:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.