Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. for i in `cat /tmp/authors`
  2. do
  3. echo $i ; git log --author="$i" --pretty=tformat: --numstat \
  4. | gawk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s removed lines: %s total lines: %s\n", add, subs, loc }' -
  5. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement