Created
August 14, 2024 18:24
-
-
Save wteuber/4528722d4ad3b910d25adca208934323 to your computer and use it in GitHub Desktop.
number of words in git repo
This file contains 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
git ls-files | xargs wc -w 2> /dev/null | ruby -e "puts ARGF.map{_1.scan(/^\s*(\d+)/)[0][0].to_i}.inject(&:+)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment