How to Get a Word Count in Unix using Bash/Terminal
This short guide will teach you how to get a word count in Unix using Bash/Terminal. It's also possible get a character count in Unix—check out our guide to see how it's done.
This short guide will teach you how to get a word count in Unix using Bash/Terminal. It's also possible get a character count in Unix—check out our guide to see how it's done.
In your shell, or Terminal on a Mac, type:
wc -l filename
.. replacing filename with the actual name of the file. This should print the number of lines like so:
$ wc -l test.php
18 test.php
This short guide will show you how to change you default shell on unix based operating systems.