My dotfiles. Period.

who 171B

123456789101112
  1. #!/bin/bash
  2. #
  3. # see whose tracks are most visible here
  4. path="${1:-.}"
  5. git log --pretty=format:%ae -- "$path" \
  6. | sort \
  7. | uniq -c \
  8. | sort -n \
  9. | tac \
  10. | head