Hii,
I have a zenodo link. This link is fully functional and upon pasting in the url space, file is correctly downloaded in the usual c://user/download
directory.
However, I wish to download the file in the current working directory and don't wish to leave unix terminal. I thought an easy would be to append wget or curl command in front of the link as shown below.
wget https://zenodo.org/records/11791175/files/SRR396636.sra_1.fastq
or
curl https://zenodo.org/records/11791175/files/SRR396636.sra_1.fastq
Unfortunately, this causes download of the html file with the name of SRR396636.sra_1.fastq. While the original file is of 600mb, the file downloaded using the wget or curl command is in 2-5kb size range.
Kindly suggest possible method.
Thank you in advance.
Could you try
wget -L -O SRR396636.sra_1.fastq "https://zenodo.org/record/11791175/files/SRR396636.sra_1.fastq"
Still, a 6kb html file gets downloaded in the name of SRR396636.sra_1.fastq
https://zenodo.org/records/11791175
so, no.
Okay, are you aware of any file access setting in zenodo by changing which this can work out?
You have tried to log in with one of the methods mentioned (ORCID/GitHub or a local Zenodo account) and that did not work?
Sorry, I'm not able to understand your answer. Could you try again?
I am repeating my query again, I have uploaded the file to my zenodo account, and I wish to make it available to download without leaving the terminal. The link works fine if pasted in url space.
Thanks.
What does the tag
axel
mean?From my little understanding,
axel
works likewget
andcurl
to download the files. However, it accelerates the downloading by some means. I used in this question to describe that axel is also not helpful for me.Hope I answered your question.
Yes, thank you.