I know that I can svn diff -r a:b repo to view the changes between the two specified revisions. What I\'d like is a diff for every revision that changed the
svn diff -r a:b repo
Start with
svn log -q file | grep '^r' | cut -f1 -d' '
That will get you a list of revisions where the file changed, which you can then use to script repeated calls to svn diff.
svn diff