Linux wget命令用于在终端中下载网络文件,wget在网络中有很强的适应性,如果因为网络的原因下载失败,wget会不断尝试,直到把整个文件下载完成。
wget支持HTTP,HTTPS和FTP协议,可以使用HTTP代理。
语法格式: wget [参数]
常用参数:
-V | –-version 显示wget的版本后退出 |
-h | –-help 打印语法帮助 |
-b, | –-background 启动后转入后台执行 |
-e | –-execute=COMMAND |
参考实例
使用wget下载单个文件:
[root@bianchengshe ~]# wget https://www.bianchengshe.com/test.zip
下载并以不同的文件名保存:
[root@bianchengshe ~]# wget -O bianchengshe.zip https://www.bianchengshe.com/test.zip
wget限速下载:
[root@bianchengshe ~]# wget --limit-rate=300k https://www.bianchengshe.com/test.zip
使用wget断点续传:
[root@bianchengshe ~]# wget -c https://www.bianchengshe.com/test.zip
使用wget后台下载:
[root@bianchengshe ~]# wget -b https://www.bianchengshe.com/test.zip
Continuing in background, pid 19564.
Output will be written to ‘wget-log’.
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容