0% found this document useful (0 votes)
8 views1 page

Counting Words

The course 'Managing Files Using Bash and Z Shell' by Mateo Prigl at Pluralsight covers the UNIX filesystem and introduces the wc command, which counts lines, words, and characters in a file. An example command is provided to demonstrate its usage. The document is a brief excerpt from the course material.

Uploaded by

akym
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Counting Words

The course 'Managing Files Using Bash and Z Shell' by Mateo Prigl at Pluralsight covers the UNIX filesystem and introduces the wc command, which counts lines, words, and characters in a file. An example command is provided to demonstrate its usage. The document is a brief excerpt from the course material.

Uploaded by

akym
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

"Managing Files Using Bash and Z Shell" course by Mateo Prigl at Pluralsight

UNIX Filesystem
wc command will show you how many lines, words and characters are in the
file.
You can add the l option to just see the number of lines.

$ wc filename
12 29 148 filename

1/1 © Copyright 2020 by Pluralsight

You might also like