3 # Applies arbitrary commands to any svn status. e.g.
5 # Delete all non-svn files (escape the ? from the shell):
8 # List all conflicted files:
11 # found on web at: http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i
16 svn st | egrep "^\\${PATTERN}[ ]+" | \
17 sed -e "s|^\\${PATTERN}[ ]*||" | \
18 sed -e "s|\\\\|/|g" | \