Andrew Reedick wrote on Thu, Mar 30, 2017 at 13:09:26 +:
> svn log --diff -r $REV "$SVNREPO" | grep '^+++' | perl -pe 's/^\+\+\+ //;
> s/\t.*$//' | while read i
'svn diff --summarize' or 'svn log -qv' would be better. (They're O(1)
as opposed to O(revision size).)
New and improved and simplified version. Uses 'svn log --diff' to get the
files that changed.
Again, only lightly tested. (The previous script assumed that the order of the
xml attributes didn't change and it did. Ooops.)
I used perl instead of sed due to sed version silliness in regards to ta