adding/deleting svn files with some harsh console-fu
1 svn st | egrep '^\?' | cut -d'?' -f2 | xargs svn add
1 svn st | egrep '^!' | cut -d'!' -f2 | xargs svn delete
Much thanks to danp
12979 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 svn st | egrep '^\?' | cut -d'?' -f2 | xargs svn add
1 svn st | egrep '^!' | cut -d'!' -f2 | xargs svn delete
1 export LC_CTYPE="en_US.UTF-8" 2 export LANG="en_US.UTF-8"