Curl wget不会下载zip文件

Curl wget不会下载zip文件,curl,wget,Curl,Wget,wget 我一直在尝试获取从本地站点下载的所有.zip文件,wget似乎可以获取除我实际需要的.zip文件之外的所有文件 e、 g 这会将单个html文件下载到本地“data.binance.vision”目录中 % s data.binance.vision/ index.html@prefix=data%2Fspot%2Fmonthly%2Ftrades%2F1INCHBTC%2F.html 有人能帮忙吗?我愿意使用任何可以在本地下载文件的实用工具(curl?)。 wget --recur

wget

我一直在尝试获取从本地站点下载的所有.zip文件,wget似乎可以获取除我实际需要的.zip文件之外的所有文件

e、 g

这会将单个html文件下载到本地“data.binance.vision”目录中

% s data.binance.vision/
index.html@prefix=data%2Fspot%2Fmonthly%2Ftrades%2F1INCHBTC%2F.html
有人能帮忙吗?我愿意使用任何可以在本地下载文件的实用工具(curl?)。

wget --recursive --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains example.org --no-parent https://data.binance.vision/?prefix=data/spot/monthly/trades/1INCHBTC/
命令as is仅限于
example.org
domain(
--domains example.org
),这可能解释了为什么它拒绝下载url指向的页面以外的任何内容。请尝试使用与站点对应的正确的
--域,即
binance.vision

wget --recursive --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains example.org --no-parent https://data.binance.vision/?prefix=data/spot/monthly/trades/1INCHBTC/