马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
wget 命令
概述:
wget 是一个用于在网络上下载文件的自由工具,支持通过 HTTP、HTTPS 和 FTP 协议下载,并且可以递归下载。
格式:
wget [option]... [URL]...
选项:
选项 | 含义 | -b | 在后台运行 wget。 | -q | 安静模式。除了错误以外,不输出任何信息。 | -c | 继续获取未完成的下载。 | -P prefix | 保存文件到指定的目录。 | -O file | 将下载的文件保存为 file 文件。 | -i file | 从文件读取要下载的 URL。 | -r, --recursive | 递归下载。 | --no-parent | 不递归到父目录。 |
参数:
实例:
[fishc@localhost ~]$ wget http://example.com/file.iso # 从指定的 URL 下载文件
[fishc@localhost ~]$ wget -c http://example.com/file.iso # 继续下载未完成的文件
[fishc@localhost ~]$ wget -b http://example.com/file.iso # 在后台下载文件
[fishc@localhost ~]$ wget -P /tmp http://example.com/file.iso # 将文件下载到 /tmp 目录
[fishc@localhost ~]$ wget -O newfile.iso http://example.com/file.iso # 将下载的文件保存为 newfile.iso
[fishc@localhost ~]$ wget -i urls.txt # 从文件 urls.txt 中读取要下载的 URL
[fishc@localhost ~]$ wget -r -np http://example.com/directory/ # 递归下载指定目录的内容,但不递归到父目录
小甲鱼科普:
wget 是在 Unix 和类 Unix(比如 Linux)系统中广泛使用的一个下载工具,它的名字来自 “World Wide Web” 和 “get” 的组合,意味着从全球网获取内容。
其强大的功能包括递归下载(可以下载整个站点)、自动重试、断点续传等。
|