Never been to DZone Snippets before?

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

« Newer Snippets
Older Snippets »
Showing 21-22 of 22 total

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

solve svn error "can't recode string" on Mac OS X

was getting this error on certain files until I added this to ~/.bash_profile :
   1  export LC_CTYPE="en_US.UTF-8"
   2  export LANG="en_US.UTF-8"
« Newer Snippets
Older Snippets »
Showing 21-22 of 22 total