I need to get a backup dump of a large (~8gb) svn repository. My current method involves using svnadmin dump to a file and then using 7-Zip to compress and split the file.

> svnadmin dump c:\path\to\myrepo > c:\svndump.svn
> 7z svndump.svn svndump.7z      // or whatever the correct syntax is

I was wondering if there would be a way to skip the middle-man here, and get the svn dump data to be compressed in one go by using pipes or something? Is this possible? What would the syntax be?

link|improve this question

71% accept rate
3  
response to the close vote: ok, yes, not directly programming related, but tangentially so. Plus it has a definitive and authoritative answer, so I think it fits on Stack Overflow. – nickf Apr 30 '09 at 7:07
3  
it's on topic - it relates to effective use of programming related tools – Alnitak Apr 30 '09 at 7:11
feedback

1 Answer

up vote 10 down vote accepted

svnadmin dump dumps to standard out by default and the 7z command line can read from standard input using the -si switch.

svnadmin dump c:\path\to\myrepo | 7z a -si svndump.7z
link|improve this answer
Bleh, you beat me by 10 seconds or so. :) – unwind Apr 30 '09 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.