[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

svn backups

From: Ruslan Sivak <rsivak_at_istandfor.com>
Date: 2007-11-09 03:01:24 CET

I found a nice command line that allows you to do a svnbackup and a
md5sum all in one:

svnadmin dump --deltas /repo |bzip2 |tee dump.bz2 | md5sum >dump.md5

The problem is I need to split the backups, so this doesn't really work. Is there perhaps another way of piping things to allow for splitting of the backups? Currently I'm doing something like this

svnadmin dump --deltas /repo |bzip2 |split - -b 64m
cat *.bz2* | md5sum >dump.md5

Is there a way to do this all in one step?

Russ

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Nov 9 03:02:03 2007

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.