tags:

views:

872

answers:

2

If so the following one-liner utilizing awk might provide a useful template

svn log -v -r{2009-05-21}:HEAD | awk '/^r[0-9]+ / {user=$3} /yms_web/ {if (user=="george") {print $2}}' | sort | uniq
+2  A: 

Or use the XML output (--xml) of svn log and an Xslt processor.

elmuerte
That is a real good idea. I'm going to combine the question above, and the xml parsing to improve a powershell script I wrote.
Justin Dearing
+1  A: 

You could add this to the list of useful command-line svn examples.

VonC
Thanks I'll do that!
George Jempty