I have this snippet i found.
svn status | grep '\!' | awk '{print $2;}' | xargs svn rm
It removes all missing files, if I or someone deletes the files manually (via the editor or they are deleted via the system)
But my bash coding is not great, what it's missing is that it does not work with files that have spaces in it.
svn rm Super\ Test.file
Is the correct way to remove files with a space, but I don't know how to modify the snippet above so it works. (or if you have another snippet that does)