Code Yarns ‍👨‍💻
Tech BlogPersonal Blog

PowerShell: Count Number of Lines or Objects

📅 2010-Mar-13 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ powershell ⬩ 📚 Archive

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

© 2022 Ashwin Nanjappa • All writing under CC BY-SA license • 🐘 @codeyarns@hachyderm.io📧