Tags
In connection to my previous post on SVN intro, here’s a neat trick to list SVN commits by a user for a given date range:
$ for i in `svn log -r{2011-02-01}:HEAD | awk '$3 == "user" {print $1}'`; do svn log -v -$i;done
Note: It does not work in t/csh shells since you need a different looping structure (see a recent post on t/csh loops).
Reference: Command-Line-Fu.