%search wc equivalent
Count number of lines in all Java files:
> type *.java | Measure-Object -line
Lines Words Characters Property
----- ----- ---------- --------
1240
Deconstruction:
type *.java prints the content of all files matching *.java patternMeasure-Object -line counts number of linesYou can also count words and characters with Measure-Object -line -word -character.
Count number of files:
> (ls *.go | measure -line).Lines
13
Deconstruction:
ls lists files in the directorymeasure is an alias for Measure-Object.Lines extracts just the Lines property from result of measure cmdlet, for shorter output