我正在使用 向客户端服务器发送请求wget
。我想下载所有.zip
文件,但问题是.zip
文件附加了键/值。如下所示:
http://example.com/client/photoshop-templates.zip?id=95923_324853&st=34258902386
我使用过但没有成功的命令是:
wget http://example.com/client/ -nd -r -L 1 -U="Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0" --no-cache -A .zip
由于文件附加了键/值,wget 是否会将文件名读取为 zip 文件以外的其他内容?
答案1
你需要做的就是这样的:
wget -O photoshop-templates.zip http://example.com/client/photoshop-templates.zip?id=95923_324853&st=34258902386
或者你也可以尝试 curl
curl -o photoshop-templates.zip http://example.com/client/photoshop-templates.zip?id=95923_324853&st=34258902386