The non-interactive network downloader.
非交互网络下载器。
wget [option]... [URL]...
Wget is non-interactive, meaning that it can work in the background, while the user is not logged on.
wget是非交互性的,这意味着它可以在后台工作,而用户则不登录。
This allows you to start a retrieval and disconnect from the system, letting Wget finish the work.
这可以让你开始检索和断开与系统,让Wget完成工作。
By contrast, most of the Web browsers require constant user's presence, which can be a great hindrance when transferring a lot of data.
相比之下,大多数网页浏览器都需要用户的不断出现,这在传输大量数据时可能是一个很大的障碍。
Wget can follow links in HTML, XHTML, and CSS pages, to create local versions of remote web sites, fully recreating the directory structure of the original site.
wget可以遵循html、xhtml和css页面中的链接,创建远程网站的本地版本,完全重新创建原始网站的目录结构。
This is sometimes referred to as "recursive downloading."
这有时被称为“递归下载”。
While doing that, Wget respects the Robot Exclusion Standard (/robots.txt).
在这样做的同时,Wget尊重机器人排除标准(/robots.txt)。
Wget can be instructed to convert the links in downloaded files to point at the local files, for offline viewing.
wget可以被指示将下载文件中的链接转换为指向本地文件,以便离线查看。
Wget has been designed for robustness over slow or unstable network connections;
Wget已经被设计为对慢或不稳定的网络连接的鲁棒性;
if a download fails due to a network problem, it will keep retrying until the whole file has been retrieved.
如果由于网络问题下载失败,它将继续重试,直到检索到整个文件。
If the server supports regetting,it will instruct the server to continue the download from where it left off.
如果服务器支持重置,它将指示服务器继续从其中断的地方下载。
Wget does not support Client Revocation Lists (CRLs) so the HTTPS certificate you are connecting to might be revoked by the siteowner.
Wget不支持客户端撤销列表(crl),因此您连接到的https证书可能被站点所有者撤销。
ubuntu@ip-172-31-3-107:~$ wget --limit-rate=300k -O ps.zip -b http://uploads.oh100.com/allimg/1709/117-1FZ5102542-52.jpg
Continuing in background, pid 12684.
Output will be written to ‘wget-log’.
对于下载非常大的文件的时候,我们可以使用参数-b进行后台下载,你可以使用以下命令来察看下载进度:
tail -f wget-log