Snippets v2

Languages
My Snippets

Update All SVN checkouts with one command Login or Register to Bookmark this snippet

Description Bash

This script will update ALL of the SVN checkouts you have in the current directory.

The Code Download
  1. #!/bin/bash
  2. for X in `find . -maxdepth 2 -type d -name ".svn" | cut -d / -f 2`;do nice -19 svn update ./$X ; done
Credits Contact JC

Added by JC on 13th July, 2010

Comments

There are no comments about this snippet.

Post Comment HTML is allowed

You must be registered and logged in to post a comment.

Login here to post a comment