409: Final

Command: wc

wc

Syntax: wc <file>
Arguments: -l, -w
Description: Displays how many words (-w) or lines (-l) are in the file.
Example:

$> wc -l lorem_ipsum.txt
$>
     18 lorem_ipsum.txt

Example:

$> wc -w lorem_ipsum.txt
$>
    123 lorem_ipsum.txt