Skip to content

Instantly share code, notes, and snippets.

@SlideeScherz
Last active April 12, 2024 03:59
Show Gist options
  • Save SlideeScherz/5e2d43a8f783a389394a2f42688e1199 to your computer and use it in GitHub Desktop.
Save SlideeScherz/5e2d43a8f783a389394a2f42688e1199 to your computer and use it in GitHub Desktop.
git-line-count

git line count

git ls-files | grep -E '.(ts|tsx|js|jsx)$' | xargs wc --lines

output:

$ git ls-files | grep -e '.ts$' -e '.tsx$' | xargs wc --lines
  10 src/App.tsx
  20 src/index.tsx
30 total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment