Hey, PowerShell Guy! How Can I Count the Number of Characters in a Text File?
And another VbScript to PowerShell translation of a scripting Guy Column, and (as expected ) again not to much problems with it this time ;-)
How Can I Count the Number of Characters in a Text File?
gc Text.txt | Measure-Object -Character
to do also line and Word count :
gc Text.txt | Measure-Object -Character -Word -Line
Enjoy,
Greetings /\/\o\/\/