public
Fork of icefox/arora
Description: Cross platform web browser
Homepage: http://arora.googlecode.com/
Clone URL: git://github.com/Arora/arora.git
Tor Arne Vestbø (author)
Mon Nov 02 06:10:49 -0800 2009
faw (committer)
Sun Nov 08 06:44:36 -0800 2009
arora / generateReleaseContributors
100755 16 lines (14 sloc) 0.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
./generateAuthors 0.10.0..HEAD | while read line
do
name=`echo $line | sed -e 's/ [^ ]*@[^ ]*//g'`
        email=`echo $line | sed -e 's/.* //g' | tr [A-Z] [a-z]`
        echo -n "<img alt=\"$name\"src=\"https://secure.gravatar.com/avatar/"
        # OS X
        #md5=`md5 -s $email | md5sum`
        # Linux
        md5=`echo -e "$email\c" | md5sum | sed -e s/\ -//g`
        echo -n $md5
        echo -n ".jpg?s=40\" width=\"40\" height=\"40\" />";
        echo " $name $email<br>"
done