mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
10 lines
183 B
Bash
10 lines
183 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git log --reverse --format='%aN <%aE>' | perl -wnE '
|
||
|
BEGIN {
|
||
|
say "# Authors sorted by whether or not they\x27re me";
|
||
|
}
|
||
|
|
||
|
print $seen{$_} = $_ unless $seen{$_}
|
||
|
' > AUTHORS
|