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

adding/deleting svn files with some harsh console-fu (See related posts)

   1  svn st | egrep '^\?' | cut -d'?' -f2 | xargs svn add

   1  svn st | egrep '^!' | cut -d'!' -f2 | xargs svn delete


Much thanks to danp

Comments on this post

peter posts on Jul 23, 2005 at 20:50
test

You need to create an account or log in to post comments to this site.


Click here to browse all 5349 code snippets

Related Posts