I was using pget to download a tarball and extract to the root of my container / with the following command:
pget "https://storage.googleapis.com/xxx/xxx/xxx.tar.gz" / -x
I receive the following error message:
Error: destination / already exists
Would the pget team be amenable to me making the change that allows extraction to already existing directories? I currently I work around this by doing the following:
pget "https://storage.googleapis.com/xxx/xxx/xxx.tar.gz" "/tmp/usrfile.tar.gz"
tar xf "/tmp/usrfile.tar.gz" -C /
rm "/tmp/usrfile.tar.gz"
I was using
pgetto download a tarball and extract to the root of my container/with the following command:I receive the following error message:
Error: destination / already existsWould the
pgetteam be amenable to me making the change that allows extraction to already existing directories? I currently I work around this by doing the following: