Skip to content

Instantly share code, notes, and snippets.

@javiercr
Created June 26, 2012 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javiercr/2997741 to your computer and use it in GitHub Desktop.
Save javiercr/2997741 to your computer and use it in GitHub Desktop.
Dump and gzip every SVN repository in the current directory
#!/bin/bash
for f in *; do
test -d "$f" && svnadmin dump "$f" | gzip > $f.svn.gz
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment