[CentOS] backups and md5 all in one while splitting

Fri Nov 9 18:25:12 UTC 2007
Ray Van Dolson <rvandolson at esri.com>

> Good idea, but no.  The idea is to minimize disk IO, so I don't want to 
> read the files that I just wrote.  I wish tee had a split option...

Well we could get really creative perhaps...

mkfifo temp.fifo
split temp.fifo -b 64m &
svnadmin dump --deltas /repo | bzip2 | tee temp.fifo | md5sum
rm -f temp.fifo

Ray