I want to bulk move a large number of files from one directory to another in svn. Unfortunately svn only supports moving one file at a time.
Basically I want to move files of a certain type (.xml) to a completely different directory e.g. mv foo/bar/.xml forbar/xml
I tried playing around with find and using -exec but I need to strip the directory off for the second argument. Any ideas?
EDIT: Using bash