PowerShell: Count Number of Lines or Objects

The Measure-Object cmdlet can be used to count lines, objects or any such properties of its input.

To count the number of files and directories in a directory:

$ dir | Measure-Object

The alias of Measure-Object is measure, using that:

$ dir | measure

To count the number of lines in a file:

$ type README.txt | measure

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.