Say I have a large file called foo.tar.xz
.
I split the file into parts of just under 4.7GB each, using split -b 4689887232 foo.tar.xz foo.tar.xz.
, which gives me files named foo.tar.xz.aa
, foo.tar.xz.ab
, etc.
Then I write each file to a different DVD and send it to Alice using a rather large homing pigeon.
Now Alice could insert each DVD, copy each file to her PC, and then use cat
and xz
to get the contents of foo
: cat foo.tar.xz.* | tar xfJ -
Now Assume that Alice has just enough space on her PC to store the extracted contents of foo
. Is there some flavour of cat
that will read these files directly from DVDs and pause the stream to allow her to insert the next DVD? Something like pausecat
or volumecat
?