wget的是Linux的命令行工具。 wget的是广泛用于从Linux命令行下载文件。有可用下载从远程服务器上的文件很多选择。 wget的工作原理相同的浏览器窗口打开URL。
提示1:使用wget下载文件
下面的例子将下载从服务器文件到当前本地目录。
$ wget https://www.youcl.com/file.zip
提示2:下载文件和保存到特定位置
下面的命令将下载到/ opt文件夹中的zip文件与名file.zip。 -O用于指定目标文件夹
# wget https://www.youcl.com/file.zip -O /opt/file.zip
提示3:从FTP下载文件
你需要一些时间来下载FTP服务器上的文件,所以wget的可以轻松地从FTP URL下载文件如下图所示。
# wget ftp://ftp.youcl.com/file.zip
提示4:有密码保护的URL下载文件
有时候,我们需要指定的用户名和密码来下载文件。在使用浏览器的简单,但使用命令行就不会提示输入登录凭据。下面的例子将展示如何在下载时有密码保护的文件源使用的用户名,密码。
提示4.1:受密码保护的FTP服务器上下载文件。
$ wget --ftp-user=username --ftp-password=secretpassword ftp://ftp.youcl.com/file.zip
or
$ wget ftp://username:secretpassword@ftp.youcl.com/file.zip
提示4.2:从密码保护的HTTP服务器下载文件。
# wget --http-user=username --http-password=secretpassword https://www.youcl.com/file.zip
or
# wget --user=username --password=secretpassword https://www.youcl.com/file.zip
提示4.3:背后的密码保护的代理服务器下载文件。
$ wget --proxy-user=username --proxy-password=secretpassword https://www.youcl.com/file.zip
提示5:从不可信安全网址下载文件。
如果有任何下载网址是利用不可信的SSL证书,wget的不会下载该文件。但是,我们可以通过在URL中使用-no检查证书参数下载。
$ wget https://youcl.com/file.zip --no-check-certificate