The Sound Alliance version control repository hit the 30,000 mark today. To celebrate, here’s a quick POSIX one liner to get the counts by user for your local repo:
SVNBASE=`svn info http://YOUR_SVN_REPO|grep ‘^Repository Root’|awk ‘{print $3}’`;svn log “$SVNBASE”|grep ‘^r[0-9]‘|cut -d’|’ -f2|sort|uniq -c|sort -nr