Using sed to remove whitespace

I found a good way to search for files in SVN that are “!” and remove them.
svn st | grep ! | sed ’s/\! *//’ | xargs svn rm

Leave a Reply