Files
nexe/node-v0.8.14/tools/updateAuthors.awk
T
Craig Condon ad5532eaad finally works
2012-11-30 20:11:55 -06:00

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 ">";
}
}