> 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