mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
14 lines
242 B
Awk
14 lines
242 B
Awk
# git log --pretty='format:%ae %an' | tac | awk -f tools/updateAuthors.awk
|
|
{
|
|
if (!x[$1]++) {
|
|
#print $0
|
|
n = split($0, a, " ");
|
|
s = a[2];
|
|
for (i = 3; i <= n ; i++) {
|
|
s = s " " a[i];
|
|
}
|
|
print s " <" $1 ">";
|
|
}
|
|
}
|
|
|