Delete multiple files in Subversion (Linux)
Removed a ton of files from an SVN repo? This will delete all the files that show up with a ! when you do svn status.
Thanks to Snippler for the snippet.
svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )
Thanks to Snippler for the snippet.
Comments