3 # Applies arbitrary commands to any svn status.
5 # For example, this shows any files that are in the working folder but are not part of the svn repository:
8 # This deletes all files that are not checked into svn (escape the ? from the shell):
11 # List all conflicted files:
15 # http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i
20 svn st | egrep "^\\${PATTERN}[ ]+" | \
21 sed -e "s|^\\${PATTERN}[ ]*||" | \
22 sed -e "s|\\\\|/|g" | \