我需要从 interserver.net 下载一个 zip 文件(服务器备份,大小为 11GB)。它需要登录凭据。
如何添加登录凭据
wget
命令不适用于登录详细信息。
答案1
我在手册页中没有看到任何关于能够下载的信息。如果可能的话,您可能需要使用 wget。
wget -O /desired/path/name.zip http://someplace.com/file.zip
如果需要登录网站,只需修改wget命令如下
wget --user username --password pass -O /desired/path/name.zip http://someplace.com/file.zip
或者可能是
wget --user username --password pass http://someplace.com/file.zip -O /desired/path/name.zip
编辑:既然你说它不起作用,那就让我们放弃输出选项(如果你还没有这样做的话)。
wget --user user --password pass http://serveraddress/file.zip
帮你做吗?显然要用你的用户名替换“user”,用你的密码替换“pass”。