Skip to content

Instantly share code, notes, and snippets.

@jbbn
Last active April 13, 2022 21:42
Show Gist options
  • Save jbbn/d73b40b6fed6d2833637ab1a35a98fab to your computer and use it in GitHub Desktop.
Save jbbn/d73b40b6fed6d2833637ab1a35a98fab to your computer and use it in GitHub Desktop.
Utilities for stats on codebases
cloc --exclude-dir=node_modules .
find . -type f -not -path "*/node_modules/*" | sed -n 's/..*\.//p' | sort | uniq -c
find . -type f -name "*.js" -not -path "*/node_modules/*" | xargs wc -l | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment