10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/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
|