I am trying to download files from this website.
The URL is: http://www.ncbi.nlm.nih.gov/geo/download/?acc=GSE48191&format=file
When I use this command:
wget http://www.ncbi.nlm.nih.gov/geo/download/?acc=GSE48191&format=file
I get only index.html?acc=GSE48191
which is some kind of binary format.
How can I download the files from this HTTP site?
?
as a wildcard since nothing matches. The main problem is&
: this will run the part that precedes (thus with an incomplete URL) in the background. But the solution is the same: to quote the URL. – vinc17 Jul 22 '14 at 17:07.tar
file) that contains the .gz files. Once you have downloaded it, runtar xvf GSE4819.tar
to expand the archive and access the files. – terdon Jul 22 '14 at 17:25