I am trying to clone Papercut, an smtp server emulator
I\'m getting the list of SVN authors with svn log -q https://papercut.svn.codeplex.com/svn | grep -e \'^
svn log -q https://papercut.svn.codeplex.com/svn | grep -e \'^
I used the following which helps skip messages with words like 'authorization' in them
svn log --xml | grep /author | sort -u | perl -pe 's/.>(.?)<./$1 = /' > users.txt