Ask the Relic


SVN Line Output Totals

July 28, 2009 at 10:23 PM | categories: Life | View Comments

I'm working in a group project currently and annoyed at the lack of output by my teammates. Wanting hard metrics of how awesome I am and how awesome they aren't, I wrote this command up.

    svn ls -R | egrep -v -e "/$" | xargs svn blame | awk '{print $2}' | sort | uniq -c | sort -r
    
    Output:
       2038 matt
        433 john
        263 ryan
        186 alice
        167 bob
   

This command will print an full repository listing of all files, remove the directories, run svn blame on each individual file, and tally the resulting line counts. It seems quite slow, depending on your repository location, because blame must hit the server for each individual file. You can remove the -R on the first part to print out the tallies for just the current directory.

I posted this over at commandlinefu.com as well for feedback, so check here for possible helpful commentary of the command! If you haven't been to commandlinefu before, definitely check it out for some great one-liner-commands!

blog comments powered by Disqus