↧
Answer by Luis Alvarado for curl unexpected end of file when downloading gzip
I tried the same example you gave: curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv and got it working correctly as seen here: If this is still not...
View ArticleAnswer by vidarlo for curl unexpected end of file when downloading gzip
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...
View Articlecurl unexpected end of file when downloading gzip
I used command The URL the data is located at. URL=http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz Downloading and unpack the data. curl -s $URL | tar zxv I got error...
View Article