我知道如何使用wget从ftp下载,但我无法使用wget从以下链接下载:
http://www.ncbi.nlm.nih.gov/geo/download/?acc=GSE46130&format=file
如果您将其复制并粘贴到浏览器中,它将开始下载。但我想将它直接下载到我们的服务器,这样我就不需要将它从我的桌面移动到服务器。我该怎么做?
谢谢!
这就是我所做的:
wget -O file.tar "http://www.ncbi.nlm.nih.gov/geo/download/?acc=GSE46130&format=file"
使用 wget 的 -O 选项来指定下载的文件的保存位置。例如:
wget -O /path/to/file http://www.ncbi.nlm.nih.gov/geo/download/?acc=GSE46130&format=file
# -r : recursive
# -nH : Disable generation of host-prefixed directories
# -nd : all files will get saved to the current directory
# -np : Do not ever ascend to the parent directory when retrieving recursively.
# -R index.html*,999999-99999-1990.gz* : don't download files with this files pattern
wget -r -nH -nd -np -R *.html,999999-99999-1990.gz* http://www1.ncdc.noaa.gov/pub/data/noaa/1990/