I had two situations, the first one adding all unversioned files in a development svn repo and the second deleting all unversioned files for security reason (via a cronfile):
svn status | grep '^?' | awk '{print $2}' | xargs svn add
Or
svn status | grep '^?' | awk '{print $2}' | xargs rm -rf