List of files changed within a range of svn revisions

Today i needed to get a list of files changed within a certain range of svn commits for ftp'ing across to a server and knocked up a quick bash script to do it. Maybe it will help someone else in the future.

for i in `seq 7 30`; do svn log -v -r $i | grep \/ | cut -d' ' -f5; done | sort | uniq -c

 

Which roughly breaks down to: