Created
November 8, 2011 18:51
-
-
Save kberridge/1348711 to your computer and use it in GitHub Desktop.
Powershell: count people's lines of code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$len = (ls -r -filter *.cs | %{ hg blame -u $_.FullName } | ?{ $_ -match '^\s*claco' }).Length; "claco wrote $len lines of code" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment