just running pixz on an existing tar file creates a tpxz file, but when I then do an extract with a piped file, I get a warning about seeking, which I presume implied that an index was not created.
E.g.
cd /tmp
curl -OLf https://gitlab.com/api/v4/projects/26210301/packages/generic/glibc/2.27_x86_64/glibc-2.27-chromeos-x86_64.tar.xz
xz -d glibc-2.27-chromeos-x86_64.tar.xz
pixz -9 glibc-2.27-chromeos-x86_64.tar
curl -Ls file:///tmp/glibc-2.27-chromeos-x86_64.tpxz | pixz -x usr/local/lib64/Scrt1.o usr/local/lib64/crti.o usr/local/lib64/crtn.o | tar x
can not seek in input: Illegal seek
(Here I get everything extracted, instead of just the files I want. The goal is to later just extract the files directly piped from a curl download.)
just running pixz on an existing tar file creates a tpxz file, but when I then do an extract with a piped file, I get a warning about seeking, which I presume implied that an index was not created.
E.g.
(Here I get everything extracted, instead of just the files I want. The goal is to later just extract the files directly piped from a curl download.)