Skip to content

Instantly share code, notes, and snippets.

@azivkovi
Last active July 20, 2019 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azivkovi/7c5e46488cd9f6b1b10f0bfc59a3521d to your computer and use it in GitHub Desktop.
Save azivkovi/7c5e46488cd9f6b1b10f0bfc59a3521d to your computer and use it in GitHub Desktop.
Counts lines of code in folder using powershell
(dir -include *.php -recurse | select-string "^(\s*)//" -notMatch | select-string "^(\s*)$" -notMatch).Count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment