Glam Prestige Journal

Bright entertainment trends with youth appeal.

I used command

The URL the data is located at.

URL=

Downloading and unpack the data.

curl -s $URL | tar zxv I got error gzip: stdin: unexpected end of file tar: Child returned status 1 tar: Error is not recoverable: exiting now

2 Answers

It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.

wget
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
0

I tried the same example you gave:

curl -s | tar zxv

and got it working correctly as seen here:

enter image description here

If this is still not working, it might be something blocking you from downloading it or having correct access to it.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy