Skip to content

Instantly share code, notes, and snippets.

@gibas
Created June 24, 2013 14:55
Show Gist options
  • Save gibas/5850638 to your computer and use it in GitHub Desktop.
Save gibas/5850638 to your computer and use it in GitHub Desktop.
simple script for upgrading svn repositories
#!/bin/sh
for directory in `ls -d *`; do
if [ -d $directory ]; then
echo $directory
svn upgrade $directory
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment