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:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.