#!/bin/sh # Generate a AUTHORS file in the format git-svn likes (with an extra = sign) wget -q -O- http://svn.digium.com/svn/repotools/authors \ | sed -e 's/^[a-z]*/& =/' # A few things missing: # Only in the initial commit: echo '(no author) = Admin Commit ' echo 'matteo = Matteo Brancaleoni ' # An earlier persona of jdixon? echo 'jim = Jim Dixon ' # Is this the right email to use? echo 'martinp = Martin Pycko ' # Created and then deleted an empty file: echo 'wmeadows = Test User ' echo 'malcolmd = Malcolm Davenport ' echo 'tholo = Thorsten lockert ' # An earlier persona of jamesgolovich: echo 'citats = James Golovich ' echo 'anthm = Anthony Minessale II ' echo 'root = Automerge script '