How to get a word count in Unix
This short guide will teach you 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.
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.