Will Partain wrote:
   dd if=foo.verilab.com._.1 bs=32k skip=1 | tar tfv - | sort +2nr | head
[...]

What if, instead, my dump blob is "chunked", as in this case (1GB chunks):

Well, you either do some shell magic:
for i in foo.verilab.com._.1*; do dd if=$i bs=32k skip=1; done | tar tvf - | ...

or you use amrestore on the holding file.

Alex

--
Alexander Jolk         /         BUF Compagnie
tel +33-1 42 68 18 28 /  fax +33-1 42 68 18 29

Reply via email to