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
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
Or use the XML output (--xml) of svn log and an Xslt processor.
You could add this to the list of useful command-line svn examples.