-
-
Save coltfred/d461d84abf2370353a21 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
git log --numstat | awk '/^Author: /{author=$0} /^[0-9]+\t[0-9]+/{n = $1 + $2; d[author] += n; t += n} END { for(a in d) { printf("%6d %6.3f%% %s\n", d[a], d[a] * 100 / t, a)}}' | sort -rn | |
# written less illegibly, it is: | |
# | |
# git log --numstat | \ | |
# awk ' | |
# /^Author: /{author=$0} | |
# /^[0-9]+\t[0-9]+/{n = $1 + $2; d[author] += n; t += n} | |
# END { for(a in d) { printf("%6d %6.3f%% %s\n", d[a], d[a] * 100 / t, a)}} | |
# ' | sort -rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment