mirror of https://github.com/lukechilds/node.git
Ryan Dahl
15 years ago
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
# git log --pretty='format:%ae %an' | tail -r | awk -f 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 ">"; |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue