Hello
I want to take an original $parent_tar object in memory and
create sub-set $child_tar objects, without having to write intermediately
to disk.
Looking in the documentation, the only method that lets you
directly manipulate the in-memory archive is $tar->remove, and the
$tar->get_files() method returns Archive::Tar::File objects that
don't seem to fit into new $tar objects.
Also, for the $children_tar's, do I have to instantiate multiple
objects from the original tar file, then clear them, to accept the
subsets?
Thanks!