Skip to content

Instantly share code, notes, and snippets.

@IzStriker
Created January 6, 2023 21:23
Show Gist options
  • Save IzStriker/d8a60daec58c3ebcac3c30979f677216 to your computer and use it in GitHub Desktop.
Save IzStriker/d8a60daec58c3ebcac3c30979f677216 to your computer and use it in GitHub Desktop.

Count lines of code in directory

find . -type f \( -name '*.cs' -o -name '*.ps1' \) | xargs wc -l | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment